blob: 032ca144ebc153269f143d4c557e091720e5e17c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "pthread_impl.h"
int pthread_mutexattr_init(pthread_mutexattr_t *a)
{
*a = (pthread_mutexattr_t){0};
return 0;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|