mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 09:30:06 +00:00
1fb7dc751e
This is required to avoid a check-localplt failure due to a sem_post call through the PLT. Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
10 lines
157 B
C
10 lines
157 B
C
#ifndef _SEMAPHORE_H
|
|
#include_next <semaphore.h>
|
|
|
|
#ifndef _ISOMAC
|
|
extern __typeof (sem_post) __sem_post;
|
|
libpthread_hidden_proto (__sem_post)
|
|
#endif
|
|
|
|
#endif
|