Rich Felker | b4d40e4 | 2011-03-07 16:20:12 -0500 | [diff] [blame] | 1 | #include "pthread_impl.h" |
2 | |||||
3 | int pthread_condattr_init(pthread_condattr_t *a) | ||||
4 | { | ||||
Rich Felker | efd4d87 | 2012-11-08 17:04:20 -0500 | [diff] [blame] | 5 | *a = (pthread_condattr_t){0}; |
Rich Felker | b4d40e4 | 2011-03-07 16:20:12 -0500 | [diff] [blame] | 6 | return 0; |
7 | } |