blob: 1be164c69ee2c91a9052ba5cbb7afd5c264c69cd (
plain)
1
2
3
4
5
6
7
8
9
|
#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);
}
|