blob: 6d09ac1edc63096c9dd976a7299b4ad06c45f6ff [file] [log] [blame]
#include "pthread_impl.h"
int pthread_condattr_init(pthread_condattr_t *a)
{
memset(a, 0, sizeof *a);
return 0;
}