You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
552 B
22 lines
552 B
--- 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"
|
|
|