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