* mkstemp-safer.c: Include "mkstemp.h".
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 20 Sep 2006 20:14:40 +0000 (20:14 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 20 Sep 2006 20:14:40 +0000 (20:14 +0000)
(mkstemp): Remove, since mkstemp.h does this for us.

lib/ChangeLog
lib/mkstemp-safer.c

index 46f2ff0..416656f 100644 (file)
@@ -6,6 +6,8 @@
        Include "mkstemp.h".
        Make the _LIBC code resemble glibc original more,
        e.g., use K&R style.
+       * mkstemp-safer.c: Include "mkstemp.h".
+       (mkstemp): Remove, since mkstemp.h does this for us.
        * stdlib--.h: Include mkstemp.h.
 
        Import this patch from libc:
index 47d015a..d1587ba 100644 (file)
 #include "stdlib-safer.h"
 
 #include <stdlib.h>
+#include "mkstemp.h"
 #include "unistd-safer.h"
 
-#if ! HAVE_MKSTEMP
-int mkstemp (char *);
-#endif
-
 /* Like mkstemp, but do not return STDIN_FILENO, STDOUT_FILENO, or
    STDERR_FILENO.  */