repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git]
/
src
/
thread
/
pthread_equal.c
blob
dbb7365587d6da421e4d65b64b1eba104056e73e
1
#include <pthread.h>
2
#include <threads.h>
3
4
static int
__pthread_equal
(
pthread_t a
,
pthread_t b
)
5
{
6
return
a
==
b
;
7
}
8
9
weak_alias
(
__pthread_equal
,
pthread_equal
);
10
weak_alias
(
__pthread_equal
,
thrd_equal
);