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