blob: 01970814152b78d9710aaafc0b791c37b4e9f75f [file] [log] [blame]
#include <pthread.h>
#include <errno.h>
int pthread_setcancelstate(int new, int* old) {
if (new > 2U)
return EINVAL;
return ENOSYS;
}