index
:
grovel
main
Unnamed repository; edit this file 'description' to name the repository.
External SSH Git service user
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
thread
/
pthread_equal.c
blob: 3e3df4fda37db0f3aafb47e8fda60c38ea575ae4 (
plain
) (
blame
)
1
2
3
4
5
6
#include
<pthread.h>
int
(
pthread_equal
)(
pthread_t
a
,
pthread_t
b
)
{
return
a
==
b
;
}