1#define _GNU_SOURCE
2#include <sys/sem.h>
3
4#include <errno.h>
5
6int semtimedop(int id, struct sembuf* buf, size_t n, const struct timespec* ts) {
7    errno = ENOSYS;
8    return -1;
9}
10