-rw-r--r-- | src/stdio/tmpnam.c | 3 |
diff --git a/src/stdio/tmpnam.c b/src/stdio/tmpnam.c index 449eb9b0..6c7c253a 100644 --- a/src/stdio/tmpnam.c +++ b/src/stdio/tmpnam.c @@ -3,12 +3,11 @@ #include <errno.h> #include <sys/stat.h> #include <string.h> +#include <stdlib.h> #include "syscall.h" #define MAXTRIES 100 -char *__randname(char *); - char *tmpnam(char *buf) { static char internal[L_tmpnam]; |