summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt/arc4random.c
diff options
context:
space:
mode:
authormillert <>1997-07-09 01:08:53 +0000
committermillert <>1997-07-09 01:08:53 +0000
commit876d3a1be4aa406672cc674a171f26878319d505 (patch)
tree72a738d612791a6e60d74a474bca3bbbcac4828c /src/lib/libc/crypt/arc4random.c
parentfd3592b18f24103bfc82412a8950e5f06e549ff1 (diff)
downloadopenbsd-876d3a1be4aa406672cc674a171f26878319d505.tar.gz
openbsd-876d3a1be4aa406672cc674a171f26878319d505.tar.bz2
openbsd-876d3a1be4aa406672cc674a171f26878319d505.zip
Clean up some -Wall flowers.
Diffstat (limited to 'src/lib/libc/crypt/arc4random.c')
-rw-r--r--src/lib/libc/crypt/arc4random.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/arc4random.c b/src/lib/libc/crypt/arc4random.c
index 078f4eeea6..d34de2be7d 100644
--- a/src/lib/libc/crypt/arc4random.c
+++ b/src/lib/libc/crypt/arc4random.c
@@ -1,4 +1,4 @@
1/* $Id: arc4random.c,v 1.1 1996/12/28 06:33:01 dm Exp $ */ 1/* $Id: arc4random.c,v 1.2 1997/07/09 01:08:16 millert Exp $ */
2 2
3/* 3/*
4 * Arc4 random number generator for OpenBSD. 4 * Arc4 random number generator for OpenBSD.
@@ -25,8 +25,9 @@
25 * RC4 is a registered trademark of RSA Laboratories. 25 * RC4 is a registered trademark of RSA Laboratories.
26 */ 26 */
27 27
28#include <stdlib.h>
29#include <fcntl.h> 28#include <fcntl.h>
29#include <stdlib.h>
30#include <unistd.h>
30#include <sys/types.h> 31#include <sys/types.h>
31#include <sys/time.h> 32#include <sys/time.h>
32 33