xref: /aosp_15_r20/external/linux-kselftest/android/include/bionic-compat.h (revision 053f45be4e351dfd5e965df293cd45b779f579ee)
1 #ifndef __BIONIC_COMPAT_H
2 #define __BIONIC_COMPAT_H
3 
4 #define _GNU_SOURCE
5 #include <sys/types.h>
6 
pthread_cancel(pthread_t thread)7 static inline int pthread_cancel(pthread_t thread) { return 0; }
8 
9 #endif /* __BIONIC_COMPAT_H */
10