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

int pthread_condattr_init(pthread_condattr_t *a)
{
	memset(a, 0, sizeof *a);
	return 0;
}