safec  2.1
Safe C Library - ISO TR24731 Bounds Checking Interface
tmpnam_s.c
Go to the documentation of this file.
1 #include "safe_lib.h"
2 #include <stdio.h>
3 
46 errno_t tmpnam_s(char *s, rsize_t maxsize)
47 {
48  return RCNEGATE(EOK);
49 }
50 EXPORT_SYMBOL(tmpnam_s)
errno_t tmpnam_s(char *s, rsize_t maxsize)
Creates a unique valid file name (no longer than L_tmpnam in length) and stores it in character strin...
Definition: tmpnam_s.c:46