3f4b504568
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]
10 lines
142 B
Makefile
10 lines
142 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 3/31/94
|
|
# $FreeBSD$
|
|
|
|
PROG= random
|
|
MAN= random.6
|
|
SRCS= random.c randomize_fd.c
|
|
WARNS?= 5
|
|
|
|
.include <bsd.prog.mk>
|