]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/tmpnam.c
c++/c-common: Fix convert_vector_to_array_for_subscript for qualified vector types...
[thirdparty/gcc.git] / libiberty / tmpnam.c
index 99615df7fe5d7454db7a542a725dd7cdff247787..cc343336642f61009e03f8d9592b0d9ae635a9e0 100644 (file)
@@ -5,7 +5,7 @@
 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 NULL.  Use of this function creates a security risk, and it must
+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
@@ -24,11 +24,10 @@ not be used in new projects.  Use @code{mkstemp} instead.
 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 ();