From ad1ff2fb268034074488f0b4b30b5311008b8617 Mon Sep 17 00:00:00 2001 From: tedbo Date: Tue, 30 Nov 2010 12:45:02 -0800 Subject: [PATCH] Add mkdtemp() prototype to stdlib.h. The mkdtemp() function is implemented in libc/stdio/mktemp.c but not exposed in stdlib.h. This change adds the prototype to stdlib.h. Change-Id: I5a98650c665d2e45b2cf6ed3382742f7bdc7c88a --- libc/include/stdlib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index 97d8e4650..5dc8a87b2 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -57,6 +57,7 @@ extern int setenv(const char *, const char *, int); extern int unsetenv(const char *); extern int clearenv(void); +extern char *mkdtemp(char *); extern char *mktemp (char *); extern int mkstemp (char *);