Sync from Libtool.
[gnulib.git] / lib / mkstemp-safer.c
index d1587ba..c8c5bbd 100644 (file)
@@ -22,7 +22,6 @@
 
 #include "stdlib-safer.h"
 
-#include <stdlib.h>
 #include "mkstemp.h"
 #include "unistd-safer.h"
 
@@ -30,7 +29,7 @@
    STDERR_FILENO.  */
 
 int
-mkstemp_safer (char *template)
+mkstemp_safer (char *templ)
 {
-  return fd_safer (mkstemp (template));
+  return fd_safer (mkstemp (templ));
 }