From 40a3261d1a6e2617f6afde0cd6d762a7e211af7a Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Sun, 16 Oct 2005 07:41:55 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELEASE_6_0_0'. --- games/bsdgames/files/patch-larn::io.c | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 games/bsdgames/files/patch-larn::io.c (limited to 'games/bsdgames/files/patch-larn::io.c') 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; -- cgit v1.2.3