summaryrefslogtreecommitdiff
path: root/lib/libc/thread/thrd_equal.c
blob: 25cfd963999b76507671df6227143f1f5dceff8e (plain)
1
2
3
4
5
6
#include <threads.h>

int thrd_equal(thrd_t thr0, thrd_t thr1)
{
	return thr0 == thr1;
}