summaryrefslogtreecommitdiff
path: root/misc/mktemp.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2013-01-15 14:36:09 +0100
committerAndreas Schwab <schwab@suse.de>2013-01-16 15:57:11 +0100
commitcfa8054fbb6212e64d54a3d4926972a6a20e3498 (patch)
treeb5412874124a4ee94b998480a919ae901d2db896 /misc/mktemp.c
parentf93a8d15699ee699282465dc1e03e033f3fabb52 (diff)
Hide reference to mktemp in libpthread
Diffstat (limited to 'misc/mktemp.c')
-rw-r--r--misc/mktemp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/mktemp.c b/misc/mktemp.c
index 9886c5d751..55421fd74a 100644
--- a/misc/mktemp.c
+++ b/misc/mktemp.c
@@ -22,7 +22,7 @@
The last six characters of TEMPLATE must be "XXXXXX";
they are replaced with a string that makes the filename unique. */
char *
-mktemp (template)
+__mktemp (template)
char *template;
{
if (__gen_tempname (template, 0, 0, __GT_NOCREATE) < 0)
@@ -31,5 +31,6 @@ mktemp (template)
return template;
}
+weak_alias (__mktemp, mktemp)
link_warning (mktemp, "the use of `mktemp' is dangerous, better use `mkstemp'")