Removed older regexp function for new POSIX regex handling due to
[unix-history] / lib / libc / gen / msgctl.c
CommitLineData
d5aff5d9
DG
1#include <sys/types.h>
2#include <sys/ipc.h>
3#include <sys/msg.h>
4
5#if __STDC__
6int msgctl(int msqid, int cmd, struct msqid_ds *buf)
7#else
8int msgctl(msqid,cmd,buf)
9 int msqid;
10 int cmd;
11 caddr_t buf;
12#endif
13{
14 return (msgsys(0, msqid, cmd, buf));
15}