diff options
author | Michael Pavone <pavone@retrodev.com> | 2021-02-20 14:52:32 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2021-02-20 14:52:32 -0800 |
commit | c9d42388d53aee083e6cb477b1017c49a9ea8bd9 (patch) | |
tree | 4718415a0759f76f42abe4177a4bc67e7f5c5c0a /util.c | |
parent | 472da34d7ac2915a4f21ea6b5c02475abc3619e3 (diff) |
Make KDEBUG functionality play nice with gdb remote debugging
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -534,6 +534,11 @@ void disable_stdout_messages(void) output_enabled = 0; } +uint8_t is_stdout_enabled(void) +{ + return output_enabled; +} + #ifdef _WIN32 #define WINVER 0x501 #include <winsock2.h> |