summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_equal.c
blob: d054d86ed5a340c81e56bf8d7fa64c6b435ecb25 (plain)
1
2
3
#include <pthread.h>

int pthread_equal(pthread_t thread1, pthread_t thread2) { return (thread1==thread2); }