safec  2.1
Safe C Library - ISO TR24731 Bounds Checking Interface
tmpfile_s.c
Go to the documentation of this file.
1 #include "safe_lib.h"
2 #include <stdio.h>
3 
40 errno_t tmpfile_s(FILE * restrict * restrict streamptr)
41 {
42  return RCNEGATE(EOK);
43 }
44 EXPORT_SYMBOL(tmpfile_s)
errno_t tmpfile_s(FILE *restrict *restrict streamptr)
The tmpfile_s function creates a temporary binary file that is different from any other existing file...
Definition: tmpfile_s.c:40