summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/mktemp.c
diff options
context:
space:
mode:
authorgraichen <graichen@openbsd.org>1997-01-20 07:46:47 +0000
committergraichen <graichen@openbsd.org>1997-01-20 07:46:47 +0000
commit5035b6181b4b0ed9e99897b8f9384b7a22c77c70 (patch)
treecff0dea34433c6bf6edf08313108807beab455ca /lib/libc/stdio/mktemp.c
parentAdd a few things and make permissions consistent (all 0XXX not XXX) (diff)
downloadwireguard-openbsd-5035b6181b4b0ed9e99897b8f9384b7a22c77c70.tar.xz
wireguard-openbsd-5035b6181b4b0ed9e99897b8f9384b7a22c77c70.zip
back out my last change to avoid the __warn_references on the mips - it's
now done for the pmax like for the arc in machine/cdefs.h
Diffstat (limited to 'lib/libc/stdio/mktemp.c')
-rw-r--r--lib/libc/stdio/mktemp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/stdio/mktemp.c b/lib/libc/stdio/mktemp.c
index 76dba5bff37..0d49e06b824 100644
--- a/lib/libc/stdio/mktemp.c
+++ b/lib/libc/stdio/mktemp.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: mktemp.c,v 1.4 1997/01/19 22:32:22 graichen Exp $";
+static char rcsid[] = "$OpenBSD: mktemp.c,v 1.5 1997/01/20 07:46:56 graichen Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -63,10 +63,8 @@ _mktemp(path)
return(_gettemp(path, (int *)NULL) ? path : (char *)NULL);
}
-#ifndef NO_WARN_REFERENCES
__warn_references(mktemp,
"warning: mktemp() possibly used unsafely; consider using mkstemp()");
-#endif
char *
mktemp(path)