summaryrefslogtreecommitdiff
path: root/src/stdio/tmpfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/tmpfile.c')
-rw-r--r--src/stdio/tmpfile.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stdio/tmpfile.c b/src/stdio/tmpfile.c
index 7143b491..06662dd7 100644
--- a/src/stdio/tmpfile.c
+++ b/src/stdio/tmpfile.c
@@ -1,6 +1,7 @@
#include <stdio.h>
-/* open a temporary file stream */
+/** open a temporary file stream **/
+
FILE * tmpfile(void)
{
char *path = "FIXME: A temporary file name *not* calling tmpnam()";
@@ -27,7 +28,5 @@ or when the program exits.
/*
IMPLEMENTATION(Whether the temporary file is removed if the program terminates abnormally)
-*/
-/*
STDC(1)
*/