remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl] / src / linux / gettid.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "pthread_impl.h"
4
5 pid_t gettid(void)
6 {
7         return __pthread_self()->tid;
8 }