diff options
| author | bunnei <bunneidev@gmail.com> | 2018-04-02 18:27:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-02 18:27:19 -0400 |
| commit | c82a4df0000ec0c86b0fda31fd781c2268addaf4 (patch) | |
| tree | 027f18d918fa0fd693c93ef13b61024121f3bfad /src/common/swap.h | |
| parent | 467858633fa6b21884b8a7855e8a649bae9fe81c (diff) | |
| parent | c9845c486e91912ae0d09dce8afb16880f2f4cba (diff) | |
Merge pull request #304 from daniellimws/fix-openbsd
Fix build on OpenBSD
Diffstat (limited to 'src/common/swap.h')
| -rw-r--r-- | src/common/swap.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/common/swap.h b/src/common/swap.h index d94cbe6b2..4a4012d1a 100644 --- a/src/common/swap.h +++ b/src/common/swap.h @@ -103,7 +103,19 @@ inline __attribute__((always_inline)) u64 swap64(u64 _data) { return __builtin_bswap64(_data); } #elif defined(__Bitrig__) || defined(__OpenBSD__) -// swap16, swap32, swap64 are left as is +// redefine swap16, swap32, swap64 as inline functions +#undef swap16 +#undef swap32 +#undef swap64 +inline u16 swap16(u16 _data) { + return __swap16(_data); +} +inline u32 swap32(u32 _data) { + return __swap32(_data); +} +inline u64 swap64(u64 _data) { + return __swap64(_data); +} #elif defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) inline u16 swap16(u16 _data) { return bswap16(_data); |
