1#ifndef _SYS_MSG_H
2#include <sysvipc/sys/msg.h>
3
4#ifndef _ISOMAC
5extern ssize_t __libc_msgrcv (int msqid, void *msgp, size_t msgsz,
6 long int msgtyp, int msgflg);
7extern int __libc_msgsnd (int msqid, const void *msgp, size_t msgsz,
8 int msgflg);
9#endif
10
11#endif
12