File: semtimedop_test.c

package info (click to toggle)
python-sysv-ipc 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 540 kB
  • sloc: ansic: 3,140; python: 1,960; makefile: 8; sh: 4
file content (11 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
//#define _XOPEN_SOURCE  500
#include "Python.h"

#include <sys/sem.h>
#include <stdlib.h>

int main(void) { 
    semtimedop(0, NULL, 0, NULL); 

    return 0;
}