1
0
Fork 0
android_kernel_rockchip_tart/tools/testing/selftests/android/include/bionic-compat.h
2025-06-27 00:32:42 -05:00

14 lines
235 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#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 */