1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00
freebsd/lib/libc/gen/semop.c
1994-09-13 14:52:45 +00:00

16 lines
279 B
C

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#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));
}