share Make headers assembler friendly

This commit is contained in:
2025-10-03 22:31:22 +02:00
parent 57ba9ff126
commit 3c1c63e970
6 changed files with 52 additions and 58 deletions

View File

@ -1,12 +1,8 @@
#ifndef SHARE_SYSDEFS_MMAN_H_
#define SHARE_SYSDEFS_MMAN_H_
enum {
MMAN_MAP_PF_RW = (1<<0),
};
#define MMAN_MAP_PF_RW (1<<0)
enum {
MMAN_MAP_F_FIXED = (1<<0),
};
#define MMAN_MAP_F_FIXED (1<<0)
#endif // SHARE_SYSDEFS_MMAN_H_