1 /* 2 * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef DEBUG_H 6 #define DEBUG_H 7 8 9 #include <stdarg.h> 10 11 #include <SupportDefs.h> 12 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 void debug_init_post_mmu(void); 19 void debug_cleanup(void); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 26 #endif // DEBUG_H 27