blob: a71bb9d9bf4ec60678b50d2d9ad9c0ba03bf8743 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <sys/msg.h> // for msgctl
#include <syscall.h> // for __syscall_3, syscall
int msgctl(int msqid, int cmd, struct msqid_ds *buf)
{
return syscall(msgctl, msqid, cmd, buf);
}
|