* 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:
parent
69724a8ba7
commit
d03c77372b
|
@ -37,12 +37,14 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#ifdef HAVE_REGCOMP
|
#ifdef HAVE_REGCOMP
|
||||||
|
# include <sys/types.h>
|
||||||
#include <sys/types.h>
|
# include <regex.h>
|
||||||
#include <regex.h>
|
#endif
|
||||||
|
|
||||||
#include "scheme.h"
|
#include "scheme.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_REGCOMP
|
||||||
|
|
||||||
#define REGEXP(x) ((struct S_Regexp *)POINTER(x))
|
#define REGEXP(x) ((struct S_Regexp *)POINTER(x))
|
||||||
#define MATCH(x) ((struct S_Match *)POINTER(x))
|
#define MATCH(x) ((struct S_Match *)POINTER(x))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue