diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-11 21:05:48 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-11 21:05:48 +0000 |
commit | 07b1fac17bb769f1f10f9a7e71375afd71b48f85 (patch) | |
tree | 4864e391f3a45fef523f8764bde820a7c770876f /sys/lib/libkern/srandom.c | |
parent | 51c3906e90162dee86c241698e966d8dba45c864 (diff) |
make -Wstrict-prototypes happy
Diffstat (limited to 'sys/lib/libkern/srandom.c')
-rw-r--r-- | sys/lib/libkern/srandom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libkern/srandom.c b/sys/lib/libkern/srandom.c index 3a88b00fe1d..d1d6ba535dc 100644 --- a/sys/lib/libkern/srandom.c +++ b/sys/lib/libkern/srandom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: srandom.c,v 1.1 1996/08/10 21:41:16 deraadt Exp $ */ +/* $OpenBSD: srandom.c,v 1.2 1996/08/11 21:05:47 niklas Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -37,6 +37,8 @@ #include <sys/types.h> +#include <lib/libkern/libkern.h> + extern u_long _randseed; void |