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

extern int __ipc();

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