diff options
Diffstat (limited to 'bfd/mach-o.c')
-rw-r--r-- | bfd/mach-o.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/mach-o.c b/bfd/mach-o.c index a26a68f..31a109b 100644 --- a/bfd/mach-o.c +++ b/bfd/mach-o.c @@ -66,7 +66,7 @@ bfd_mach_o_valid (bfd *abfd) return true; } -static INLINE bool +static inline bool mach_o_wide_p (bfd_mach_o_header *header) { switch (header->version) @@ -81,7 +81,7 @@ mach_o_wide_p (bfd_mach_o_header *header) } } -static INLINE bool +static inline bool bfd_mach_o_wide_p (bfd *abfd) { return mach_o_wide_p (&bfd_mach_o_get_data (abfd)->header); |