mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
9 lines
156 B
C
9 lines
156 B
C
#include <pthread.h>
|
|
int main(int argc, char *argv[])
|
|
{
|
|
pthread_cond_t c;
|
|
pthread_cond_init(& c, NULL);
|
|
pthread_cond_destroy(& c);
|
|
return 0;
|
|
}
|