mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
8 lines
109 B
C
8 lines
109 B
C
|
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_attr_init(pthread_attr_t *a)
|
||
|
{
|
||
|
memset(a, 0, sizeof *a);
|
||
|
return 0;
|
||
|
}
|