CVS update: /ccvs/src/
[email protected] 26 May 2005 17:12:56 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dprice Date: 05/05/26 10:12:56 Modified: /ccvs/src/ ChangeLog, cvs.h Log: * cvs.h: Move "system.h" include before GNULIB includes. Move some GNULIB includes from "system.h". File Changes: Directory: /ccvs/src/ ===================== File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.3198&r2=1.3199 Delta lines: +5 -0 ------------------- --- ChangeLog 26 May 2005 08:24:17 -0000 1.3198 +++ ChangeLog 26 May 2005 17:12:54 -0000 1.3199 @@ -1,3 +1,8 @@ +2005-05-26 Derek Price <[email protected]> + + * cvs.h: Move "system.h" include before GNULIB includes. Move some + GNULIB includes from "system.h". + 2005-05-26 Conrad T. Pino <[email protected]> * buffer.c, buffer.h: Add & use typedefs for function pointer arguments File [changed]: cvs.h Url: https://ccvs.cvshome.org/source/browse/ccvs/src/cvs.h?r1=1.335&r2=1.336 Delta lines: +6 -2 ------------------- --- cvs.h 23 May 2005 22:56:41 -0000 1.335 +++ cvs.h 26 May 2005 17:12:54 -0000 1.336 @@ -44,6 +44,9 @@ # endif #endif /* __attribute__ */ +/* Some GNULIB headers require that we include system headers first. */ +#include "system.h" + /* begin GNULIB headers */ #include "dirname.h" #include "exit.h" @@ -51,6 +54,9 @@ #include "minmax.h" #include "regex.h" #include "strcase.h" +#include "stat-macros.h" +#include "timespec.h" +#include "unlocked-io.h" #include "xalloc.h" #include "xgetcwd.h" #include "xreadlink.h" @@ -72,8 +78,6 @@ char *strerror (int); #endif -#include "system.h" - #include "hash.h" #include "stack.h"