# HG changeset patch # User bears # Date 1036940793 0 # Node ID 18d6c61ed4e72392f062a5e6fa105ee6b08122cf # Parent f3b44be9e4ab0ce5c129642fec65a0f57501cfd0 [svn] * src/configfile.c: #include requires sys/types.h be included first. diff -r f3b44be9e4ab -r 18d6c61ed4e7 ChangeLog --- 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 requires sys/types.h be included first. Tue Oct 25 2002 Jim Hague diff -r f3b44be9e4ab -r 18d6c61ed4e7 src/configfile.c --- 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 #include +#include #include #include "configfile.h" #include "filter.h"