diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-23 11:19:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-23 11:19:00 +0000 |
commit | f1775381f91f1250b20f1949dfd0364ddb0ee9fc (patch) | |
tree | 1326bd7f4dfd8c57f89c4d6b2f13d4f22f578abf /utils/readelf.c | |
parent | d35b0bc119816825a657f7c9c2a1f062e7048c39 (diff) |
- fix inline keyword
Diffstat (limited to 'utils/readelf.c')
-rw-r--r-- | utils/readelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/readelf.c b/utils/readelf.c index 188f92f9f..2af4b5ca9 100644 --- a/utils/readelf.c +++ b/utils/readelf.c @@ -28,7 +28,7 @@ /* makefile will include elf.h for us */ static int byteswap; -static inline uint32_t byteswap32_to_host(uint32_t value) +static __inline__ uint32_t byteswap32_to_host(uint32_t value) { if (byteswap==1) { return(bswap_32(value)); @@ -36,7 +36,7 @@ static inline uint32_t byteswap32_to_host(uint32_t value) return(value); } } -static inline uint64_t byteswap64_to_host(uint64_t value) +static __inline__ uint64_t byteswap64_to_host(uint64_t value) { if (byteswap==1) { return(bswap_64(value)); |