mirror of
https://github.com/fluencelabs/musl
synced 2025-06-10 05:21:34 +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;
|
|
}
|