1#include <sys/sem.h>
2
3#include <errno.h>
4
5int semctl(int id, int num, int cmd, ...) {
6    errno = ENOSYS;
7    return -1;
8}
9