Posted to tcl by auriocus at Sun Dec 07 20:57:57 GMT 2014view pretty

#else /* ! __GNUC__ */

#if defined(__i386__) || defined(__x86_64__)

#if !defined(__DARWIN_OS_INLINE)
# if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#        define __DARWIN_OS_INLINE static inline
# elif defined(__MWERKS__) || defined(__cplusplus)
#        define __DARWIN_OS_INLINE static inline
# else
#        define __DARWIN_OS_INLINE static __inline__
# endif
#endif

__DARWIN_OS_INLINE
uint16_t
_OSSwapInt16(
    uint16_t			data
)
{
    return __DARWIN_OSSwapConstInt16(data);
}