Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
thread
/
pthread_attr_init.c
blob: 969e0a3805e9299070eddd8a2b43cf7d6be160b1 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_attr_init
(
pthread_attr_t
*
a
)
{
*
a
=
(
pthread_attr_t
){
0
};
return
0
;
}