diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:59:25 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:59:25 +0000 |
commit | bbcbca7f2ae22916ccab06c14e9cb9270d2af32c (patch) | |
tree | 5361482e1134c69ff9e99a8c2ee048437141137f | |
parent | a625d258b816f75e9e06407b73e31c156b299f88 (diff) | |
download | guile-bbcbca7f2ae22916ccab06c14e9cb9270d2af32c.tar.gz |
* regex-posix.c: #include <config.h> if HAVE_CONFIG_H.
-rw-r--r-- | libguile/regex-posix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/regex-posix.c b/libguile/regex-posix.c index bd7c341e2..0910147c3 100644 --- a/libguile/regex-posix.c +++ b/libguile/regex-posix.c @@ -51,6 +51,10 @@ libraries which do not agree with the Spencer implementation may produce varying behavior. Sigh. */ +#if HAVE_CONFIG_H +# include <config.h> +#endif + #include <sys/types.h> #include "libguile/_scm.h" |