* Fixed function declarations in regexp.c that caused the Win32 plugin

to crash.


git-svn-id: svn://svn.zoy.org/elk/trunk@165 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-09-19 11:45:16 +00:00
parent 69724a8ba7
commit d03c77372b
1 changed files with 5 additions and 3 deletions

View File

@ -37,12 +37,14 @@
#include <string.h>
#ifdef HAVE_REGCOMP
#include <sys/types.h>
#include <regex.h>
# include <sys/types.h>
# include <regex.h>
#endif
#include "scheme.h"
#ifdef HAVE_REGCOMP
#define REGEXP(x) ((struct S_Regexp *)POINTER(x))
#define MATCH(x) ((struct S_Match *)POINTER(x))