Files
semi-libc/src/thread/pthread_equal.c
T

7 lines
84 B
C

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