blob: 7f9cbd3551221f772dee2ea7db236ae5f7252206 [file] [log] [blame]
#include <pthread.h>
int main(int argc, char *argv[])
{
pthread_cond_t c;
pthread_cond_init(& c, NULL);
pthread_cond_destroy(& c);
return 0;
}