summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/semop.c
blob: abfde73a77d47457e4374333a2c0fba0e467ffb6 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <asm/ipc.h>

extern int __ipc();

int semop(int semid,struct sembuf *sops,unsigned nsops) {
  return __ipc(SEMOP,semid,nsops,0,sops);
}