/* * $Id: semop.c,v 1.1 1993/11/14 12:40:34 cgd Exp $ */ #include #include #include #if __STDC__ int semop(int semid, struct sembuf *sops, unsigned nsops) #else int semop(semid, sops, nsops) int semid; struct sembuf *sops; unsigned nsops; #endif { return (semsys(2, semid, sops, nsops, 0)); }