blob: 9fab5c333d5aab106bdd30d0bcf1382e6518b75c [file] [log] [blame]
#include <pthread.h>
#include <errno.h>
int pthread_setcanceltype(int new, int* old) {
if (new > 1U)
return EINVAL;
return ENOSYS;
}