mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +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;
|
|
}
|