| 63 | } |
| 64 | |
| 65 | void gui_console_printf(const char *fmt, ...) { |
| 66 | va_list ap; |
| 67 | va_start(ap, fmt); |
| 68 | vfprintf(stderr, fmt, ap); |
| 69 | fflush(stderr); |
| 70 | va_end(ap); |
| 71 | } |
| 72 | |
| 73 | void gui_console_err_printf(const char *fmt, ...) { |
| 74 | va_list ap; |
no outgoing calls
no test coverage detected