diff options
author | seanc <seanc@FreeBSD.org> | 2003-02-15 10:26:10 +0000 |
---|---|---|
committer | seanc <seanc@FreeBSD.org> | 2003-02-15 10:26:10 +0000 |
commit | cb6083f9802291b208d0d70b2a356afb604bf3cf (patch) | |
tree | 3395f1c1eccf05868f2a82e467d2be10be8aeb18 /games/random/Makefile | |
parent | c831929bbba4418d3580388349f25f7f5edebe49 (diff) | |
download | FreeBSD-src-cb6083f9802291b208d0d70b2a356afb604bf3cf.zip FreeBSD-src-cb6083f9802291b208d0d70b2a356afb604bf3cf.tar.gz |
flexlint rears its head as well as some style(9) fixes[1]. Fixed a
few bugs for a few corner cases and correctly handle the case where
read(2) is read()'ing from a non-file descriptor and could get fewer
bytes back than the buffer, but it isn't EOF[2]. random(6) extensively
tested and believed to be bug free (save performance for large files).
Submitted by: mkm [1], tjr[2]
Diffstat (limited to 'games/random/Makefile')
-rw-r--r-- | games/random/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/random/Makefile b/games/random/Makefile index 5f482df..7db5a8f 100644 --- a/games/random/Makefile +++ b/games/random/Makefile @@ -4,6 +4,6 @@ PROG= random MAN= random.6 SRCS= random.c randomize_fd.c -WARNS= 5 +WARNS?= 5 .include <bsd.prog.mk> |