diff options
author | se <se@FreeBSD.org> | 2001-03-12 18:02:58 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 2001-03-12 18:02:58 +0000 |
commit | b85960a115de7d14983574b0bd4c6b6c97bbf35d (patch) | |
tree | 9677a524ef125afb28b0e57ff539bf69361335f9 | |
parent | a289a23de6d3c17a79ae5d94a312dd5263904c8b (diff) | |
download | FreeBSD-ports-b85960a115de7d14983574b0bd4c6b6c97bbf35d.zip FreeBSD-ports-b85960a115de7d14983574b0bd4c6b6c97bbf35d.tar.gz |
Fix order of includes: put <sys/types.h> at top of list
-rw-r--r-- | games/xblast-beta/files/patch-ae | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/games/xblast-beta/files/patch-ae b/games/xblast-beta/files/patch-ae new file mode 100644 index 0000000..35a6ca8 --- /dev/null +++ b/games/xblast-beta/files/patch-ae @@ -0,0 +1,18 @@ +--- common.h~ Mon Jun 12 16:52:17 2000 ++++ common.h Mon Mar 12 18:53:58 2001 +@@ -23,6 +23,7 @@ + #ifndef _COMMON_H + #define _COMMON_H + ++#include <sys/types.h> + #include <assert.h> + #include <ctype.h> + #include <dirent.h> +@@ -38,7 +39,6 @@ + #include <sys/socket.h> + #include <sys/stat.h> + #include <sys/time.h> +-#include <sys/types.h> + #include <sys/wait.h> + #include <time.h> + #include <unistd.h> |