implement pthread_condattr_* interfaces
[musl] / src / thread / pthread_condattr_init.c
diff --git a/src/thread/pthread_condattr_init.c b/src/thread/pthread_condattr_init.c
new file mode 100644 (file)
index 0000000..6d09ac1
--- /dev/null
@@ -0,0 +1,7 @@
+#include "pthread_impl.h"
+
+int pthread_condattr_init(pthread_condattr_t *a)
+{
+       memset(a, 0, sizeof *a);
+       return 0;
+}