• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 #ifndef __BIONIC_COMPAT_H
4 #define __BIONIC_COMPAT_H
5 
6 #define _GNU_SOURCE
7 #include <sys/types.h>
8 
pthread_cancel(pthread_t thread)9 static inline int pthread_cancel(pthread_t thread)
10 {
11 	return 0;
12 }
13 
14 #endif /* __BIONIC_COMPAT_H */
15