summaryrefslogtreecommitdiff
path: root/prober/sniff_union_semun_defined.c
blob: 8ec64eb21bd83bfbb7d82fd2002062faf0de19ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//#define _XOPEN_SOURCE  500
#include "Python.h"

#include <sys/sem.h>

int main(void) {
    union semun foo;
    
    foo.val = 42;
    
    return 0;
}