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

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

int msgsnd (int msqid, const void *msgp, size_t msgsz, int msgflg) {
  return __ipc(MSGSND,msqid, msgsz, msgflg, msgp);
}