From cfa8054fbb6212e64d54a3d4926972a6a20e3498 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 15 Jan 2013 14:36:09 +0100 Subject: Hide reference to mktemp in libpthread --- nptl/sem_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nptl/sem_open.c') diff --git a/nptl/sem_open.c b/nptl/sem_open.c index 5bc56c5bd9..83b2fdf472 100644 --- a/nptl/sem_open.c +++ b/nptl/sem_open.c @@ -329,7 +329,7 @@ sem_open (const char *name, int oflag, ...) since the file must be opened with a specific mode. The mode cannot later be set since then we cannot apply the file create mask. */ - if (mktemp (tmpfname) == NULL) + if (__mktemp (tmpfname) == NULL) return SEM_FAILED; /* Open the file. Make sure we do not overwrite anything. */ -- cgit 1.4.1