blob: 6b3dfbf5304647bad02b83c2206f306132bde926 [file] [log] [blame]
#include "threads_impl.h"
int pthread_mutexattr_setprotocol(pthread_mutexattr_t* a, int protocol) {
if (protocol)
return ENOTSUP;
return 0;
}