blob: 7b74c51e246688a52d8e6f06f8efa620a66aceb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#if __STDC__
int msgctl(int msqid, int cmd, struct msqid_ds *buf)
#else
int msgctl(msqid,cmd,buf)
int msqid;
int cmd;
caddr_t buf;
#endif
{
return (msgsys(0, msqid, cmd, buf));
}
|