diff options
Diffstat (limited to 'lib/libc/gen/semop.c')
-rw-r--r-- | lib/libc/gen/semop.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libc/gen/semop.c b/lib/libc/gen/semop.c deleted file mode 100644 index 0b97c6a..0000000 --- a/lib/libc/gen/semop.c +++ /dev/null @@ -1,15 +0,0 @@ -#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)); -} |