diff options
author | Stefan Eßer <se@FreeBSD.org> | 2001-03-12 18:02:58 +0000 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2001-03-12 18:02:58 +0000 |
commit | 9ff99de88d1ed32c6966d4a5a436554c02a3acb6 (patch) | |
tree | 19b11ef331f5e112f176de36a21e13bd5993b6c5 /games | |
parent | Upgrade to 2.8.30-beta (diff) |
Fix order of includes: put <sys/types.h> at top of list
Diffstat (limited to 'games')
-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 000000000000..35a6ca8a76cd --- /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> |