diff options
Diffstat (limited to 'include/coff/internal.h')
-rw-r--r-- | include/coff/internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/coff/internal.h b/include/coff/internal.h index 69eb0a4..f12908b 100644 --- a/include/coff/internal.h +++ b/include/coff/internal.h @@ -536,6 +536,13 @@ struct internal_syment #define DECREF(x) \ ((((x) >> N_TSHIFT) & ~ N_BTMASK) | ((x) & N_BTMASK)) +/* Visibility flag, in XCOFF n_type. */ +#define SYM_V_INTERNAL 0x1000 +#define SYM_V_HIDDEN 0x2000 +#define SYM_V_PROTECTED 0x3000 +#define SYM_V_EXPORTED 0x4000 +#define SYM_V_MASK 0xF000 + union internal_auxent { struct |