Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
thread
/
pthread_condattr_init.c
blob: a41741b4ec061414f3f126b1767b575e1dfb10da [
file
]
#include
"pthread_impl.h"
int
pthread_condattr_init
(
pthread_condattr_t
*
a
)
{
*
a
=
(
pthread_condattr_t
){
0
};
return
0
;
}