diff options
Diffstat (limited to 'src/core/panic.h')
| -rw-r--r-- | src/core/panic.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/panic.h b/src/core/panic.h index 6deef964..2dc65f8c 100644 --- a/src/core/panic.h +++ b/src/core/panic.h @@ -34,4 +34,13 @@ */ extern void nni_panic(const char *, ...); +/* + * nni_println is used to print output to a debug console. This should only + * be used in the most dire of circumstances -- such as during an assertion + * failure that is going to cause the program to crash. After the string is + * emitted, a new line character is emitted, so the string should not + * include one. + */ +extern void nni_println(const char *); + #endif /* CORE_PANIC_H */ |
