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