mirror of
https://github.com/fluencelabs/musl
synced 2025-05-24 05:01:32 +00:00
8 lines
138 B
C
8 lines
138 B
C
|
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_cond_init(pthread_cond_t *c, const pthread_condattr_t *a)
|
||
|
{
|
||
|
memset(c, 0, sizeof *c);
|
||
|
return 0;
|
||
|
}
|