Files
2023-05-14 11:44:44 +00:00

10 lines
194 B
C

#ifndef __BIONIC_COMPAT_H
#define __BIONIC_COMPAT_H
#define _GNU_SOURCE
#include <sys/types.h>
static inline int pthread_cancel(pthread_t thread) { return 0; }
#endif /* __BIONIC_COMPAT_H */