X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=inline;f=src%2Fthread%2Fpthread_equal.c;h=dbb7365587d6da421e4d65b64b1eba104056e73e;hb=b67d56c7b3b0f84360db749aa6f431a07761d9c8;hp=3e3df4fda37db0f3aafb47e8fda60c38ea575ae4;hpb=9205e486091c3901d0e5aa9a0384dc07dae6114d;p=musl diff --git a/src/thread/pthread_equal.c b/src/thread/pthread_equal.c index 3e3df4fd..dbb73655 100644 --- a/src/thread/pthread_equal.c +++ b/src/thread/pthread_equal.c @@ -1,6 +1,10 @@ #include +#include -int (pthread_equal)(pthread_t a, pthread_t b) +static int __pthread_equal(pthread_t a, pthread_t b) { return a==b; } + +weak_alias(__pthread_equal, pthread_equal); +weak_alias(__pthread_equal, thrd_equal);