summaryrefslogtreecommitdiff
path: root/prober/sniff_sem_getvalue.c
blob: 4632853cd709b3944a915022b330c92dbd9e2b9f (plain)
1
2
3
4
5
6
7
8
#include <stdlib.h>
#include <semaphore.h>

int main(void) { 
    sem_getvalue(NULL, NULL);
    return 0; 
}