mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-10-13 21:25:07 -07:00
mostly improvements to malloc
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user