musl/src/thread/pthread_equal.c
Rich Felker 9205e48609 macro for pthread_equal
no sense bloating apps with a function call for an equality comparison...
2011-08-14 15:17:36 -04:00

6 lines
86 B
C

#include <pthread.h>
int (pthread_equal)(pthread_t a, pthread_t b)
{
return a==b;
}