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.h | |
parent | 472da34d7ac2915a4f21ea6b5c02475abc3619e3 (diff) |
Make KDEBUG functionality play nice with gdb remote debugging
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -88,6 +88,8 @@ void warning(char *format, ...); void debug_message(char *format, ...); //Disables output of info and debug messages to stdout void disable_stdout_messages(void); +//Returns stdout disable status +uint8_t is_stdout_enabled(void); //Deletes a file, returns true on success, false on failure uint8_t delete_file(char *path); //Initializes the socket library on platforms that need it |