summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/shmctl.c
blob: 92b9d1fbb3238aed5c660c5fa165ce0e971fb21a (plain)
1
2
3
4
5
6
7
8
9
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>

extern int __ipc(int,int,int,int,void*);

int shmctl(int shmid, int cmd, struct shmid_ds *buf) {
  return __ipc(SHMCTL,shmid,cmd,0,buf);
}