mirror of
https://github.com/fluencelabs/musl
synced 2025-06-05 19:11:34 +00:00
note that this is a pedantic conformance issue and waste of code. it only affects broken code or code that is probing for conformance.
8 lines
130 B
C
8 lines
130 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_attr_setscope(pthread_attr_t *a, int scope)
|
|
{
|
|
if (scope > 1U) return EINVAL;
|
|
return 0;
|
|
}
|