diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1998-01-10 23:00:07 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1998-01-10 23:00:07 +0000 |
commit | 7c6e96080c4fb49bf912942804477d202a53396c (patch) | |
tree | 876b1afcb203be407dbb2ddfc69653f78b8680c2 /lib/libc/gen/msgctl.c | |
parent | 1a06f650e6ca43e02260e8d252597fbed2cea73e (diff) | |
download | FreeBSD-src-7c6e96080c4fb49bf912942804477d202a53396c.zip FreeBSD-src-7c6e96080c4fb49bf912942804477d202a53396c.tar.gz |
This commit was manufactured by cvs2svn to create branch 'JB'.
Diffstat (limited to 'lib/libc/gen/msgctl.c')
-rw-r--r-- | lib/libc/gen/msgctl.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libc/gen/msgctl.c b/lib/libc/gen/msgctl.c deleted file mode 100644 index 7b74c51e..0000000 --- a/lib/libc/gen/msgctl.c +++ /dev/null @@ -1,15 +0,0 @@ -#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)); -} |