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