* regex-posix.c: #include "_scm.h" before conditionally #including
authorJim Blandy <jimb@red-bean.com>
Thu, 29 May 1997 02:20:10 +0000 (02:20 +0000)
committerJim Blandy <jimb@red-bean.com>
Thu, 29 May 1997 02:20:10 +0000 (02:20 +0000)
<regex.h>; the former defines HAVE_REGCOMP.

libguile/regex-posix.c

index 859d5a3..fe52f82 100644 (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"