diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-06-21 18:36:33 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-06-21 18:36:33 +0000 |
commit | 854e78391e4e19d9090ee0a03319d99ef5e1c9d5 (patch) | |
tree | 9e6f6bf53193c4e474ad2fb2822d7ad925adeb35 /games/freebsd-games | |
parent | 518f73a42c2f96b0c24061219ecfbc5617fe256b (diff) | |
download | ports-854e78391e4e19d9090ee0a03319d99ef5e1c9d5.tar.gz ports-854e78391e4e19d9090ee0a03319d99ef5e1c9d5.zip |
Notes
Diffstat (limited to 'games/freebsd-games')
-rw-r--r-- | games/freebsd-games/files/patch-larn::diag.c | 31 | ||||
-rw-r--r-- | games/freebsd-games/files/patch-larn::header.h | 13 | ||||
-rw-r--r-- | games/freebsd-games/files/patch-larn::io.c | 31 |
3 files changed, 75 insertions, 0 deletions
diff --git a/games/freebsd-games/files/patch-larn::diag.c b/games/freebsd-games/files/patch-larn::diag.c new file mode 100644 index 000000000000..f3cf3d0a5c8b --- /dev/null +++ b/games/freebsd-games/files/patch-larn::diag.c @@ -0,0 +1,31 @@ +$FreeBSD$ + +--- larn/diag.c 17 Jun 2003 04:25:24 -0000 1.2 ++++ larn/diag.c 21 Jun 2004 02:28:34 -0000 1.3 +@@ -210,7 +210,7 @@ + if (beenhere[k]) + lrfill((char*)&cell[k*MAXX*MAXY],sizeof(struct cel)*MAXY*MAXX); + +- lrfill((char*)&c[0],100*sizeof(long)); gtime = lrint(); ++ lrfill((char*)&c[0],100*sizeof(long)); gtime = lrint_x(); + level = c[CAVELEVEL] = lgetc(); + playerx = lgetc(); playery = lgetc(); + lrfill((char*)iven,26); lrfill((char*)ivenarg,26*sizeof(short)); +@@ -241,7 +241,7 @@ + } + + time(&zzz); +- initialtime = zzz-lrint(); ++ initialtime = zzz-lrint_x(); + fstat(fd,&filetimes); /* get the creation and modification time of file */ + lrfill((char*)&zzz,sizeof(long)); zzz += 6; + if (filetimes.st_ctime > zzz) fsorry(); /* file create time */ +@@ -249,7 +249,7 @@ + if (c[HP]<0) { died(284); return; } /* died a post mortem death */ + + oldx = oldy = 0; +- i = lrint(); /* inode # */ ++ i = lrint_x(); /* inode # */ + if (i && (filetimes.st_ino!=i)) fsorry(); + lrclose(); + if (strcmp(fname,ckpfile) == 0) diff --git a/games/freebsd-games/files/patch-larn::header.h b/games/freebsd-games/files/patch-larn::header.h new file mode 100644 index 000000000000..ea58c01c7952 --- /dev/null +++ b/games/freebsd-games/files/patch-larn::header.h @@ -0,0 +1,13 @@ +$FreeBSD$ + +--- larn/header.h 17 Jun 2003 02:49:28 -0000 1.1 ++++ larn/header.h 21 Jun 2004 02:28:34 -0000 1.2 +@@ -359,7 +359,7 @@ + + char *fortune(),*lgetw(),*lgetl(); + char *tmcapcnv(); +-long paytaxes(),lgetc(),lrint(); ++long paytaxes(),lgetc(),lrint_x(); + unsigned long readnum(); + + /* macro to create scroll #'s with probability of occurrence */ diff --git a/games/freebsd-games/files/patch-larn::io.c b/games/freebsd-games/files/patch-larn::io.c new file mode 100644 index 000000000000..ec579ab00de7 --- /dev/null +++ b/games/freebsd-games/files/patch-larn::io.c @@ -0,0 +1,31 @@ +$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; |