Changeset 609 for branches/GNU/src/binutils/libiberty/tmpnam.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/tmpnam.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 /* 2 3 @deftypefn Supplemental char* tmpnam (char *@var{s}) 4 5 This function attempts to create a name for a temporary file, which 6 will be a valid file name yet not exist when @code{tmpnam} checks for 7 it. @var{s} must point to a buffer of at least @code{L_tmpnam} bytes, 8 or be @code{NULL}. Use of this function creates a security risk, and it must 9 not be used in new projects. Use @code{mkstemp} instead. 10 11 @end deftypefn 12 13 */ 14 1 15 #include <stdio.h> 2 16 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.