home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / msgsnd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-04  |  191 b   |  11 lines

  1. #include <syscall.h>
  2.  
  3. #define __KERNEL__ 
  4. #include <sys/msg.h>
  5.  
  6. int
  7. msgsnd (int msqid, struct msgbuf *msgp, int msgsz, int msgflg)
  8. {
  9.     return __ipc (MSGSND, msqid, msgsz, msgflg,  msgp);
  10. }
  11.