diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-20 21:52:05 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-20 21:52:05 +0000 |
commit | 0c0184736ac51b88dd1634090e7fd138defead30 (patch) | |
tree | 6fdc86a7d65edeede9ae48b4254f33c6d1270f76 /games/cavezofphear/files | |
parent | - Update to 2.20 (diff) |
Boulder Dash / Digger-like game written using ncurses
PR: ports/83939
Submitted by: Travis Poppe <tlp@liquidx.org>
Diffstat (limited to 'games/cavezofphear/files')
-rw-r--r-- | games/cavezofphear/files/patch-isready.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/games/cavezofphear/files/patch-isready.c b/games/cavezofphear/files/patch-isready.c new file mode 100644 index 000000000000..8e0fa50b2ba0 --- /dev/null +++ b/games/cavezofphear/files/patch-isready.c @@ -0,0 +1,12 @@ +--- isready.c.orig Wed Nov 5 16:00:45 2003 ++++ isready.c Tue Sep 20 23:43:45 2005 +@@ -1,6 +1,9 @@ + #include <stdio.h> ++#include <inttypes.h> ++#include <sys/types.h> + #include <sys/select.h> + #include <sys/time.h> ++#include <string.h> + + int isready(int fd); + |