1#include "threads_impl.h"
2
3int pthread_kill(pthread_t t, int sig) {
4    return ENOSYS;
5}
6