summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libc/stdtime/localtime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdtime/localtime.c b/lib/libc/stdtime/localtime.c
index ad26f7e..bee916b 100644
--- a/lib/libc/stdtime/localtime.c
+++ b/lib/libc/stdtime/localtime.c
@@ -1426,7 +1426,7 @@ const time_t * const timep;
struct tm *p_tm;
if (__isthreaded != 0) {
- _once(&localtime_once, localtime_key_init);
+ _pthread_once(&localtime_once, localtime_key_init);
if (localtime_key_error != 0) {
errno = localtime_key_error;
return(NULL);
@@ -1527,7 +1527,7 @@ const time_t * const timep;
struct tm *p_tm;
if (__isthreaded != 0) {
- _once(&gmtime_once, gmtime_key_init);
+ _pthread_once(&gmtime_once, gmtime_key_init);
if (gmtime_key_error != 0) {
errno = gmtime_key_error;
return(NULL);
OpenPOWER on IntegriCloud