diff options
author | peter <peter@FreeBSD.org> | 1997-03-11 14:39:26 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-11 14:39:26 +0000 |
commit | 8d3716cd7df67691076e43ac50924be9064699b3 (patch) | |
tree | 91026226f2c8385855717f35090e080dba1321d3 /games | |
parent | e9253fba9a4534590a0b2592d95c59834d76abaf (diff) | |
parent | 8d369a0bd229f13f37f2c2ce4d3b5dd21b58c59f (diff) | |
download | FreeBSD-src-8d3716cd7df67691076e43ac50924be9064699b3.zip FreeBSD-src-8d3716cd7df67691076e43ac50924be9064699b3.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r23704,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'games')
-rw-r--r-- | games/factor/Makefile | 2 | ||||
-rw-r--r-- | games/number/Makefile | 2 | ||||
-rw-r--r-- | games/pig/Makefile | 2 | ||||
-rw-r--r-- | games/pig/pig.c | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/games/factor/Makefile b/games/factor/Makefile index 0189952..b82f09e 100644 --- a/games/factor/Makefile +++ b/games/factor/Makefile @@ -3,7 +3,7 @@ PROG= factor SRCS= factor.c pr_tbl.c CFLAGS+=-I${.CURDIR}/../primes -MAN6= factor.6 +MAN6= factor.0 MLINKS+=factor.6 primes.6 .PATH: ${.CURDIR}/../primes diff --git a/games/number/Makefile b/games/number/Makefile index dd18edb..466f666 100644 --- a/games/number/Makefile +++ b/games/number/Makefile @@ -1,6 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= number -MAN6= number.6 +MAN6= number.0 .include <bsd.prog.mk> diff --git a/games/pig/Makefile b/games/pig/Makefile index f1ab583..60f6b24 100644 --- a/games/pig/Makefile +++ b/games/pig/Makefile @@ -1,6 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= pig -MAN6= pig.6 +MAN6= pig.0 .include <bsd.prog.mk> diff --git a/games/pig/pig.c b/games/pig/pig.c index 3fbd514..b2f9112 100644 --- a/games/pig/pig.c +++ b/games/pig/pig.c @@ -38,7 +38,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)pig.c 8.1 (Berkeley) 5/31/93"; +static char sccsid[] = "@(#)pig.c 8.2 (Berkeley) 5/4/95"; #endif /* not lint */ #include <sys/types.h> @@ -47,6 +47,7 @@ static char sccsid[] = "@(#)pig.c 8.1 (Berkeley) 5/31/93"; #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> void pigout __P((char *, int)); void usage __P((void)); |