mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 14:42:07 +03:00
add struct msgbuf to sys/msg.h
This commit is contained in:
parent
6bf0fdbdfc
commit
0182c287ca
@ -37,6 +37,13 @@ int msgget (key_t, int);
|
||||
ssize_t msgrcv (int, void *, size_t, long, int);
|
||||
int msgsnd (int, const void *, size_t, int);
|
||||
|
||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
||||
struct msgbuf {
|
||||
long mtype;
|
||||
char mtext[1];
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user