1 /* 2 * Copyright 2007, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _BE_BUILD_H 6 #define _BE_BUILD_H 7 8 9 #define B_BEOS_VERSION_4 0x0400 10 #define B_BEOS_VERSION_4_5 0x0450 11 #define B_BEOS_VERSION_5 0x0500 12 13 #define B_BEOS_VERSION B_BEOS_VERSION_5 14 #define B_BEOS_VERSION_MAUI B_BEOS_VERSION_5 15 16 #define B_HAIKU_VERSION_1 0x0100 17 18 #if __GNUC__ 19 # define _UNUSED(argument) argument 20 # define _PACKED __attribute__((packed)) 21 # define _PRINTFLIKE(_format_, _args_) \ 22 __attribute__((format(__printf__, _format_, _args_))) 23 # define _EXPORT 24 #endif 25 26 #endif /* _BE_BUILD_H */ 27