diff options
Diffstat (limited to 'stdio-common/tempnam.c')
-rw-r--r-- | stdio-common/tempnam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tempnam.c b/stdio-common/tempnam.c index 8683643c76..5d4960f216 100644 --- a/stdio-common/tempnam.c +++ b/stdio-common/tempnam.c @@ -37,5 +37,5 @@ tempnam (const char *dir, const char *pfx) if (__gen_tempname (buf, 0, 0)) return NULL; - return strdup (buf); + return __strdup (buf); } |