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 <SupportDefs.h> 10 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 void debug_init_post_mmu(void); 17 void debug_cleanup(void); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 24 #endif // DEBUG_H 25