| 1234567891011121314151617181920212223 |
- --- filterdiff.c.orig Thu Jan 31 14:35:00 2002
- +++ filterdiff.c Fri Feb 1 13:32:41 2002
- @@ -27,6 +27,9 @@
- #ifdef HAVE_ERROR_H
- # include <error.h>
- #endif /* HAVE_ERROR_H */
- +#ifdef HAVE_SYS_TYPES_H
- +# include <sys/types.h> // for ssize_t
- +#endif /* HAVE_SYS_TYPES_H */
- #include <fnmatch.h>
- #include <getopt.h>
- #include <locale.h>
- @@ -34,9 +37,6 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- -#ifdef HAVE_SYS_TYPES_H
- -# include <sys/types.h> // for ssize_t
- -#endif /* HAVE_SYS_TYPES_H */
- #include <time.h>
-
- #include "util.h"
|