remove (no longer useful) namespace-protected __mktemp symbol

This commit is contained in:
Rich Felker 2013-08-02 00:52:50 -04:00
parent c4685ae429
commit 9a97d103fb
1 changed files with 1 additions and 4 deletions

View File

@ -2,11 +2,10 @@
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include "libc.h"
char *__randname(char *);
char *__mktemp(char *template)
char *mktemp(char *template)
{
size_t l = strlen(template);
int retries = 10000;
@ -24,5 +23,3 @@ char *__mktemp(char *template)
errno = EEXIST;
return template;
}
weak_alias(__mktemp, mktemp);