summaryrefslogtreecommitdiff
path: root/src/thread/pthread_attr_setscope.c
blob: d56ee391a1dd77aad23c83805856d3018af957ec (plain) (blame)
1
2
3
4
5
6
7
#include "pthread_impl.h"

int pthread_attr_setscope(pthread_attr_t *a, int scope)
{
	if (scope > 1U) return EINVAL;
	return 0;
}