summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>1998-10-23 04:39:38 +0000
committerChris Toshok <toshok@src.gnome.org>1998-10-23 04:39:38 +0000
commit7594724175ff6955d676ee8713a7ab37ed80dd11 (patch)
treec65dd7366609978051c359e3dc0093219531663f
parent40a22b29b13133173a5057d5333bdaf66504ed83 (diff)
downloadyelp-7594724175ff6955d676ee8713a7ab37ed80dd11.tar.gz
freebsd needs there to be #include <sys/types.h> before regex.h
-rw-r--r--src/info2html/utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/info2html/utils.c b/src/info2html/utils.c
index 5de48791..69137221 100644
--- a/src/info2html/utils.c
+++ b/src/info2html/utils.c
@@ -2,6 +2,7 @@
#include <stdio.h>
#include <string.h>
+#include <sys/types.h>
#include <regex.h>
#include <glib.h>