diff options
author | jake <jake@FreeBSD.org> | 2002-05-24 04:41:02 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2002-05-24 04:41:02 +0000 |
commit | e35256e809e2060515c323b4394c9a4156e45202 (patch) | |
tree | 13b6e4cb3bb013ddf8b7cf4229df38e0e9979853 /lib/libc/gen/msgctl.c | |
parent | 2db4b611ef2da1301c58ff0a432205bf4c3e054a (diff) | |
download | FreeBSD-src-e35256e809e2060515c323b4394c9a4156e45202.zip FreeBSD-src-e35256e809e2060515c323b4394c9a4156e45202.tar.gz |
These files are no longer used.
Diffstat (limited to 'lib/libc/gen/msgctl.c')
-rw-r--r-- | lib/libc/gen/msgctl.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/libc/gen/msgctl.c b/lib/libc/gen/msgctl.c deleted file mode 100644 index bf4b40f..0000000 --- a/lib/libc/gen/msgctl.c +++ /dev/null @@ -1,18 +0,0 @@ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - -#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)); -} |