mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 03:51:36 +00:00
8 lines
117 B
C
8 lines
117 B
C
|
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_condattr_init(pthread_condattr_t *a)
|
||
|
{
|
||
|
memset(a, 0, sizeof *a);
|
||
|
return 0;
|
||
|
}
|