mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-09 00:02:17 +03:00
ipc.h: fix gnu aliases for key and seq in struct ipc_perm
the macro was the wrong way round, additionally GNU defines __ prefixed versions, which are used by qemu.
This commit is contained in:
parent
7aec71c411
commit
f1bb78343a
@ -14,8 +14,10 @@ extern "C" {
|
||||
#include <bits/alltypes.h>
|
||||
|
||||
#ifdef _GNU_SOURCE
|
||||
#define __ipc_perm_key key
|
||||
#define __ipc_perm_seq seq
|
||||
#define key __ipc_perm_key
|
||||
#define seq __ipc_perm_seq
|
||||
#define __key __ipc_perm_key
|
||||
#define __seq __ipc_perm_seq
|
||||
#endif
|
||||
|
||||
#include <bits/ipc.h>
|
||||
|
Loading…
Reference in New Issue
Block a user