summaryrefslogtreecommitdiff
path: root/src/stdio/tmpnam.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/tmpnam.c')
-rw-r--r--src/stdio/tmpnam.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/stdio/tmpnam.c b/src/stdio/tmpnam.c
index b4ac6b8e..af4f2012 100644
--- a/src/stdio/tmpnam.c
+++ b/src/stdio/tmpnam.c
@@ -1,6 +1,5 @@
-#if 0
-
#include <stdio.h>
+#include "_stdio.h"
/** generate a temporary file name **/
@@ -9,6 +8,7 @@ char * tmpnam(char *s)
static int ntimescalled = 0;
static char path[L_tmpnam];
+ SIGNAL_SAFE(0);
if (ntimescalled >= TMP_MAX) {
return NULL;
}
@@ -42,6 +42,3 @@ this array.
IMPLEMENTATION(Behavior if THIS() is called more than CONSTANT(TMP_MAX) times)
STDC(1)
*/
-
-
-#endif