9 lines
232 B
C
9 lines
232 B
C
#ifndef _KERNEL_LIBK_ENDIANESS_H
|
|
#define _KERNEL_LIBK_ENDIANESS_H
|
|
|
|
#define BSWAP16(x) __builtin_bswap16 ((x))
|
|
#define BSWAP32(x) __builtin_bswap32 ((x))
|
|
#define BSWAP64(x) __builtin_bswap64 ((x))
|
|
|
|
#endif // _KERNEL_LIBK_ENDIANESS_H
|