diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-03 23:38:21 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-03 23:38:21 +0000 |
commit | 2eb0772712bea8e14b27c6d788d3a0dc01064411 (patch) | |
tree | c3870827976747288aae795596737fb71152f7f6 /lib/libc/stdlib | |
parent | f0277956175f5a8dae82711f00e8a1998f10be06 (diff) | |
download | FreeBSD-src-2eb0772712bea8e14b27c6d788d3a0dc01064411.zip FreeBSD-src-2eb0772712bea8e14b27c6d788d3a0dc01064411.tar.gz |
Add missing #include "namespace.h".
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/rand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/stdlib/rand.c b/lib/libc/stdlib/rand.c index 57e6bfa..23cc201 100644 --- a/lib/libc/stdlib/rand.c +++ b/lib/libc/stdlib/rand.c @@ -39,6 +39,7 @@ static char sccsid[] = "@(#)rand.c 8.1 (Berkeley) 6/14/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "namespace.h" #include <sys/time.h> /* for sranddev() */ #include <sys/types.h> #include <fcntl.h> /* for sranddev() */ |