Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
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
;
}