summaryrefslogtreecommitdiff
path: root/src/stdio/tempnam.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/tempnam.c')
-rw-r--r--src/stdio/tempnam.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/stdio/tempnam.c b/src/stdio/tempnam.c
index 719f94ca..e40ec537 100644
--- a/src/stdio/tempnam.c
+++ b/src/stdio/tempnam.c
@@ -1,15 +1,12 @@
-#if 0
-
#include <stdio.h>
char * tempnam(const char * dir, const char * pfx)
{
+ SIGNAL_SAFE(0);
+ (void)dir; (void)pfx;
return NULL;
}
/*
XOPEN(4)
*/
-
-
-#endif