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