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

int pthread_condattr_init(pthread_condattr_t *a)
{
	*a = (pthread_condattr_t){0};
	return 0;
}