blob: 07b096494c4d8d6846efe29cd032f4659b66f048 [file] [log] [blame]
#define _GNU_SOURCE
#include <sys/sem.h>
#include <errno.h>
int semtimedop(int id, struct sembuf* buf, size_t n, const struct timespec* ts) {
errno = ENOSYS;
return -1;
}