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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stdio/tmpnam.c b/src/stdio/tmpnam.c
index b4b5d932..f5e79c55 100644
--- a/src/stdio/tmpnam.c
+++ b/src/stdio/tmpnam.c
@@ -1,6 +1,7 @@
#include <stdio.h>
/** generate a temporary file name **/
+
char * tmpnam(char *s)
{
static int ntimescalled = 0;
@@ -37,7 +38,5 @@ this array.
/*
IMPLEMENTATION(Behavior if THIS() is called more than CONSTANT(TMP_MAX) times)
-*/
-/*
STDC(1)
*/