patchutils.patch 552 B

1234567891011121314151617181920212223
  1. --- filterdiff.c.orig Thu Jan 31 14:35:00 2002
  2. +++ filterdiff.c Fri Feb 1 13:32:41 2002
  3. @@ -27,6 +27,9 @@
  4. #ifdef HAVE_ERROR_H
  5. # include <error.h>
  6. #endif /* HAVE_ERROR_H */
  7. +#ifdef HAVE_SYS_TYPES_H
  8. +# include <sys/types.h> // for ssize_t
  9. +#endif /* HAVE_SYS_TYPES_H */
  10. #include <fnmatch.h>
  11. #include <getopt.h>
  12. #include <locale.h>
  13. @@ -34,9 +37,6 @@
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. -#ifdef HAVE_SYS_TYPES_H
  18. -# include <sys/types.h> // for ssize_t
  19. -#endif /* HAVE_SYS_TYPES_H */
  20. #include <time.h>
  21. #include "util.h"