| @deftypefn Supplemental char* tmpnam (char *@var{s}) |
| This function attempts to create a name for a temporary file, which |
| will be a valid file name yet not exist when @code{tmpnam} checks for |
| it. @var{s} must point to a buffer of at least @code{L_tmpnam} bytes, |
| or be @code{NULL}. Use of this function creates a security risk, and it must |
| not be used in new projects. Use @code{mkstemp} instead. |
| #define P_tmpdir "/usr/tmp" |
| static char tmpnam_buffer[L_tmpnam]; |
| static int tmpnam_counter; |
| extern int getpid (void); |
| /* Generate the filename and make sure that there isn't one called |
| sprintf (s, "%s/%s%x.%x", P_tmpdir, "t", pid, tmpnam_counter); |