summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt/arc4random.c
diff options
context:
space:
mode:
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