summaryrefslogtreecommitdiff
path: root/src/thread/pthread_attr_init.c
blob: 969e0a3805e9299070eddd8a2b43cf7d6be160b1 (plain) (blame)
1
2
3
4
5
6
7
#include "pthread_impl.h"

int pthread_attr_init(pthread_attr_t *a)
{
	*a = (pthread_attr_t){0};
	return 0;
}