19a18af35e
* fs_darwin.c => fs_darwin.cpp * fs_freebsd.c => fs_freebsd.cpp * use bool instead of int again in fs_darwin.cpp (C => C++) * declare loop varibles inline again in fs_freebsd.cpp (C => C++) * 2 newlines between top header gaurd and first #include * 2 newlines after last #include * freebsd/endian.h and freebsd/regex.h convert \r\n to just \n * remove some leading tabs in fs_freebsd.cpp * add newlines after single line if statement in fs_freebsd.cpp * 80-char limit fixes in fs_freebsd.cpp
17 lines
409 B
C
17 lines
409 B
C
#ifndef _HAIKU_BUILD_COMPATIBILITY_FREEBSD_ENDIAN
|
|
#define _HAIKU_BUILD_COMPATIBILITY_FREEBSD_ENDIAN
|
|
|
|
|
|
// There's no <endian.h> in FreeBSD, but <sys/endian.h>. And the macro naming
|
|
// differs.
|
|
|
|
#include <sys/endian.h>
|
|
|
|
|
|
#define __LITTLE_ENDIAN _LITTLE_ENDIAN
|
|
#define __BIG_ENDIAN _BIG_ENDIAN
|
|
#define __PDP_ENDIAN _PDP_ENDIAN
|
|
#define BYTE_ORDER _BYTE_ORDER
|
|
|
|
#endif // _HAIKU_BUILD_COMPATIBILITY_FREEBSD_ENDIAN
|