diff options
Diffstat (limited to 'sysdeps/generic/pt-once.c')
-rw-r--r-- | sysdeps/generic/pt-once.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/generic/pt-once.c b/sysdeps/generic/pt-once.c index 5be5e48..d9f4733 100644 --- a/sysdeps/generic/pt-once.c +++ b/sysdeps/generic/pt-once.c @@ -23,7 +23,7 @@ #include <pt-internal.h> int -pthread_once (pthread_once_t *once_control, void (*init_routine) (void)) +__pthread_once (pthread_once_t *once_control, void (*init_routine) (void)) { if (once_control->run == 0) { @@ -41,3 +41,4 @@ pthread_once (pthread_once_t *once_control, void (*init_routine) (void)) return 0; } +strong_alias (__pthread_once, pthread_once); |