drd/tests/Makefile.am: Add dlopen.stdout.exp to EXTRA_DIST
[valgrind.git] / helgrind / tests / cond_init_destroy.c
blob7f9cbd3551221f772dee2ea7db236ae5f7252206
1 #include <pthread.h>
2 int main(int argc, char *argv[])
4 pthread_cond_t c;
5 pthread_cond_init(& c, NULL);
6 pthread_cond_destroy(& c);
7 return 0;
8 }