diff options
Diffstat (limited to 'nptl/pthread_cond_destroy.c')
-rw-r--r-- | nptl/pthread_cond_destroy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_cond_destroy.c b/nptl/pthread_cond_destroy.c index 05299fc7a9..750cd0cd4c 100644 --- a/nptl/pthread_cond_destroy.c +++ b/nptl/pthread_cond_destroy.c @@ -22,8 +22,9 @@ int -pthread_cond_destroy (cond) +__pthread_cond_destroy (cond) pthread_cond_t *cond; { return 0; } +strong_alias (__pthread_cond_destroy, pthread_cond_destroy) |