musl/src/thread/pthread_condattr_init.c
Rich Felker b4d40e44e3 implement pthread_condattr_* interfaces
note that, while the attributes are stored, they are not used in
pthread_cond_init yet.
2011-03-07 16:20:12 -05:00

7 lines
117 B
C

#include "pthread_impl.h"
int pthread_condattr_init(pthread_condattr_t *a)
{
memset(a, 0, sizeof *a);
return 0;
}