Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
thread
/
cnd_init.c
blob: 4b6852f5e083fc95c7c35df445fc2285362c486f [
file
] [
log
] [
blame
]
#include
<threads.h>
int
cnd_init
(
cnd_t
*
c
)
{
*
c
=
(
cnd_t
){
0
};
return
thrd_success
;
}