diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-02-10 00:52:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-02-10 00:52:29 +0000 |
commit | 584c603b312f9885942192cafaf545ad68cd4d62 (patch) | |
tree | 165b65135b5d9818bf682adf3d5c36cd322f451c /lib | |
parent | 1ff8ec33f8f0d5b5ab52913878867c1916fba46a (diff) |
Pull in stdlib.h for arc4random prototype.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdio/mktemp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/mktemp.c b/lib/libc/stdio/mktemp.c index b1f7092bf0e..620ac64b081 100644 --- a/lib/libc/stdio/mktemp.c +++ b/lib/libc/stdio/mktemp.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: mktemp.c,v 1.6 1997/02/07 13:01:24 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mktemp.c,v 1.7 1997/02/10 00:52:28 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -40,6 +40,7 @@ static char rcsid[] = "$OpenBSD: mktemp.c,v 1.6 1997/02/07 13:01:24 deraadt Exp #include <fcntl.h> #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <ctype.h> #include <unistd.h> |