1#include <pthread.h>
2
3#include <errno.h>
4
5int pthread_cancel(pthread_t t) {
6    return ENOSYS;
7}
8