* Fixed the byte order definitions.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25671 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-05-27 12:42:04 +00:00
parent 2976912a51
commit 9c20d5cb7d

View File

@ -110,16 +110,16 @@
#define B_BENDIAN_TO_HOST_INT32(arg) FSSH_B_BENDIAN_TO_HOST_INT32(arg)
#define B_BENDIAN_TO_HOST_INT16(arg) FSSH_B_BENDIAN_TO_HOST_INT16(arg)
#define swap_data fssh_swap_data
#define is_type_swapped
#define swap_data fssh_swap_data
#define is_type_swapped fssh_is_type_swapped
// Private implementations
#define __fssh_swap_double
#define __fssh_swap_float
#define __fssh_swap_int64
#define __fssh_swap_int32
#define __fssh_swap_int16
#define __swap_double __fssh_swap_double
#define __swap_float __fssh_swap_float
#define __swap_int64 __fssh_swap_int64
#define __swap_int32 __fssh_swap_int32
#define __swap_int16 __fssh_swap_int16
////////////////////////////////////////////////////////////////////////////////