X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=libiberty%2Ftmpnam.c;h=cc343336642f61009e03f8d9592b0d9ae635a9e0;hb=99a5596592eda72c5c60b45cdfabb47e426132d5;hp=8eb77e28c0be3927a889eda972df6390bdfe9cca;hpb=abd8680d6efd97e7ba848a6392ee3ad72be18cd0;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/tmpnam.c b/libiberty/tmpnam.c index 8eb77e28c0..cc34333664 100644 --- a/libiberty/tmpnam.c +++ b/libiberty/tmpnam.c @@ -1,3 +1,17 @@ +/* + +@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. + +@end deftypefn + +*/ + #include #ifndef L_tmpnam @@ -10,11 +24,10 @@ static char tmpnam_buffer[L_tmpnam]; static int tmpnam_counter; -extern int getpid (); +extern int getpid (void); char * -tmpnam (s) - char *s; +tmpnam (char *s) { int pid = getpid ();