fix the type of wchar_t on arm; support wchar_t varying with arch
[musl] / include / pthread.h
index a0af20f..44a7101 100644 (file)
@@ -80,7 +80,9 @@ int pthread_join(pthread_t, void **);
 __attribute__((const))
 #endif
 pthread_t pthread_self(void);
+
 int pthread_equal(pthread_t, pthread_t);
+#define pthread_equal(x,y) ((x)==(y))
 
 int pthread_setcancelstate(int, int *);
 int pthread_setcanceltype(int, int *);