1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

* regex-posix.c: #include "_scm.h" before conditionally #including

<regex.h>; the former defines HAVE_REGCOMP.
This commit is contained in:
Jim Blandy 1997-05-29 02:20:10 +00:00
parent 1e5afba02b
commit 69e0587b1c

View file

@ -51,6 +51,8 @@
#include <stdio.h>
#include <sys/types.h>
#include "_scm.h"
/* Supposedly, this file is never compiled unless we know we have
POSIX regular expressions. But we still put this in an #ifdef so
the file is CPP'able (for dependency scanning) even on systems that
@ -59,7 +61,6 @@
#include <regex.h>
#endif
#include "_scm.h"
#include "smob.h"
#include "symbols.h"
#include "vectors.h"