Last change
on this file since e16e8f2 was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
346 bytes
|
Line | |
---|
1 | #ifndef DEBUG_H |
---|
2 | #define DEBUG_H |
---|
3 | |
---|
4 | #include <stdbool.h> |
---|
5 | |
---|
6 | #ifdef DYNAMIC_DEBUG |
---|
7 | #define syslinux_debug_enabled __syslinux_debug_enabled(__func__) |
---|
8 | extern bool __syslinux_debug_enabled(const char *func); |
---|
9 | #else |
---|
10 | #define syslinux_debug_enabled (0) |
---|
11 | #endif /* DYNAMIC_DEBUG */ |
---|
12 | |
---|
13 | extern int syslinux_debug(const char *str, bool enable); |
---|
14 | |
---|
15 | #endif /* DEBUG_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.