mostly improvements to malloc

This commit is contained in:
2025-07-01 11:20:04 -07:00
parent 109e554524
commit e1e30b511a
15 changed files with 276 additions and 30 deletions

View File

@@ -21,8 +21,7 @@ void syscall_handler(int code, va_list args) {
}
}
void syscall(int code, ...)
{
void syscall(int code, ...) {
va_list args;
va_start(args, code);
syscall_handler(code, args);