blob: 02bb9aefd0ee23f4d3ee43863ecf1906d90fa93d (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _SYS_MSG_H
#include <sysvipc/sys/msg.h>
extern int __libc_msgrcv (int msqid, void *msgp, size_t msgsz, long int msgtyp,
int msgflg);
extern int __libc_msgsnd (int msqid, const void *msgp, size_t msgsz,
int msgflg);
#endif
|