Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
92f8396b0c8e4f146563b87f46137484cfb36e31
/
.
/
src
/
thread
/
pthread_barrierattr_init.c
blob: f26982721075d9ce5a3594b129f101e009675af4 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_barrierattr_init
(
pthread_barrierattr_t
*
a
)
{
memset
(
a
,
0
,
sizeof
*
a
);
return
0
;
}