12345678910111213141516171819202122232425262728293031323334 |
- #ifndef _BITS_BYTESWAP_H
- # error "Never use <bits/byteswap-16.h> directly; include <byteswap.h> instead."
- #endif
- #ifdef __GNUC__
- # define __bswap_16(x) \
- (__extension__ \
- ({ unsigned short int __bsx = (unsigned short int) (x); \
- __bswap_constant_16 (__bsx); }))
- #else
- static __inline unsigned short int
- __bswap_16 (unsigned short int __bsx)
- {
- return __bswap_constant_16 (__bsx);
- }
- #endif
|