changeset 273:18d6c61ed4e7 noffle

[svn] * src/configfile.c: #include <regex.h> requires sys/types.h be included first.
author bears
date Sun, 10 Nov 2002 15:06:33 +0000
parents f3b44be9e4ab
children 755e03bc7dcf
files ChangeLog src/configfile.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Nov 10 11:44:18 2002 +0000
+++ b/ChangeLog	Sun Nov 10 15:06:33 2002 +0000
@@ -21,6 +21,7 @@
   compile cleanly on Cygwin with GCC 3.2, except for a warning about
   printing a time_t with a %ld format. This will serve as a reminder that
   we assume time_t is the same size as a long.
+* src/configfile.c: #include <regex.h> requires sys/types.h be included first.
 
 Tue Oct 25 2002 Jim Hague <jim.hague@acm.org>
 
--- a/src/configfile.c	Sun Nov 10 11:44:18 2002 +0000
+++ b/src/configfile.c	Sun Nov 10 15:06:33 2002 +0000
@@ -6,7 +6,7 @@
     SPOOLDIR
     VERSION
 
-  $Id: configfile.c 381 2002-05-14 14:25:45Z mirkol $
+  $Id: configfile.c 405 2002-11-10 15:06:33Z bears $
 */
 
 #if HAVE_CONFIG_H
@@ -15,6 +15,7 @@
 
 #include <ctype.h>
 #include <limits.h>
+#include <sys/types.h>
 #include <regex.h>
 #include "configfile.h"
 #include "filter.h"