diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 14:25:31 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 14:25:31 -0500 |
| commit | 000a7c045c98c30aac86db93f8c9c978e5ca8c59 (patch) | |
| tree | f882b1258d0c9b32f8517a9557b86e6ebc8aa9bb /src/stdio/tmpfile_s.c | |
| parent | b25685d5dc26370ecae112f805b4141c4efdeea4 (diff) | |
update standards and safety checks
Diffstat (limited to 'src/stdio/tmpfile_s.c')
| -rw-r--r-- | src/stdio/tmpfile_s.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/stdio/tmpfile_s.c b/src/stdio/tmpfile_s.c index 84bff0c8..e0562cfd 100644 --- a/src/stdio/tmpfile_s.c +++ b/src/stdio/tmpfile_s.c @@ -1,11 +1,11 @@ -#if 0 - #include <stdio.h> +#include "_stdio.h" /* open a temporary file stream */ errno_t tmpfile_s(FILE * restrict * restrict streamptr) { - __C_EXT(1, 201112L); + SIGNAL_SAFE(0); + (void)streamptr; return 0; } @@ -26,6 +26,3 @@ be automatically removed when closed by fn(fclose) or when the program exits. /* CEXT1(201112) */ - - -#endif |
