vortex runtime console out implementation

This commit is contained in:
Blaise Tine
2021-06-15 04:01:44 -04:00
parent ee06337553
commit 6213b1a910
18 changed files with 78144 additions and 78036 deletions

View File

@@ -64,7 +64,7 @@ static const char* skip_modifier(const char* format) {
break;
case 'j':
case 'z':
case 't':
case 't':
case 'L':
++format;
break;
@@ -123,10 +123,10 @@ int vx_vprintf(const char* format, va_list va) {
int vx_printf(const char * format, ...) {
va_list va;
va_start(va, format);
va_start(va, format);
int ret = vx_vprintf(format, va);
va_end(va);
return ret;
va_end(va);
return ret;
}
static const char hextoa[] = "0123456789abcdef";