1 /****************************************************************************** 2 * compiler.h 3 * 4 * Created: 05.05.2014 5 * Author: N. Fomin 6 ******************************************************************************/ 7 8 #ifndef _COMPILER_H 9 #define _COMPILER_H 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 #include <stddef.h> 16 #include <stdint.h> 17 #include <stdbool.h> 18 19 #ifndef _UNIT_TEST_ 20 #include "parts.h" 21 #endif 22 #include "err_codes.h" 23 24 #ifdef __cplusplus 25 } 26 #endif 27 28 #endif /* _COMPILER_H */ 29