aboutsummaryrefslogtreecommitdiff
path: root/games/bsdgames/files/patch-larn::io.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/bsdgames/files/patch-larn::io.c')
-rw-r--r--games/bsdgames/files/patch-larn::io.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/games/bsdgames/files/patch-larn::io.c b/games/bsdgames/files/patch-larn::io.c
deleted file mode 100644
index ec579ab00de7..000000000000
--- a/games/bsdgames/files/patch-larn::io.c
+++ /dev/null
@@ -1,31 +0,0 @@
-$FreeBSD$
-
---- larn/io.c 24 Jan 2004 21:00:14 -0000 1.3
-+++ larn/io.c 21 Jun 2004 02:28:34 -0000 1.4
-@@ -25,7 +25,7 @@
- * FILE INPUT ROUTINES
- *
- * long lgetc() read one character from input buffer
-- * long lrint() read one integer from input buffer
-+ * long lrint_x() read one integer from input buffer
- * lrfill(address,number) put input bytes into a buffer
- * char *lgetw() get a whitespace ended word from input
- * char *lgetl() get a \n or EOF ended line from input
-@@ -343,7 +343,7 @@
- }
-
- /*
-- * long lrint() Read one integer from input buffer
-+ * long lrint_x() Read one integer from input buffer
- *
- * +---------+---------+---------+---------+
- * | high | | | low |
-@@ -355,7 +355,7 @@
- * The save order is low order first, to high order (4 bytes total)
- * Returns the int read
- */
--long lrint()
-+long lrint_x()
- {
- unsigned long i;
- i = 255 & lgetc(); i |= (255 & lgetc()) << 8;