From: Peep P. <so...@us...> - 2004-03-20 19:27:31
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10144 Modified Files: net.h Log Message: Uses #if instead of #ifdef for a config.h-defined symbol. Index: net.h =================================================================== RCS file: /cvsroot/agd/server/src/net.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- net.h 18 Mar 2004 20:45:33 -0000 1.9 +++ net.h 20 Mar 2004 19:17:30 -0000 1.10 @@ -3,7 +3,7 @@ #include "config.h" -#ifdef HAVE_MACHINE_TYPES_H +#if HAVE_MACHINE_TYPES_H #include <machine/types.h> #endif #include <dirent.h> |