index
:
musl
awilfox/monotonic-dns
lookup-serv
master
posix-compliance
ustat
The musl libc tree (WIP / dev branches)
root
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
thread
/
pthread_equal.c
blob: a55d280c83bde62cdb5f8cbb0c4b212da8ecf26f (
plain
) (
blame
)
1
2
3
4
5
6
#include
<pthread.h>
int
pthread_equal
(
pthread_t
a
,
pthread_t
b
)
{
return
a
==
b
;
}