diff options
Diffstat (limited to 'lib/libc/gen/msgsnd.c')
-rw-r--r-- | lib/libc/gen/msgsnd.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/libc/gen/msgsnd.c b/lib/libc/gen/msgsnd.c deleted file mode 100644 index a620915..0000000 --- a/lib/libc/gen/msgsnd.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <sys/types.h> -#include <sys/ipc.h> -#include <sys/msg.h> - -#if __STDC__ -int msgsnd(int msqid, void *msgp, size_t msgsz, int msgflg) -#else -int msgsnd(msqid, msgp, msgsz, msgflg) - int msqid; - void *msgp; - size_t msgsz; - int msgflg; -#endif -{ - return (msgsys(2, msqid, msgp, msgsz, msgflg)); -} |