Files
Espresso/kernel/syscalls.c

11 lines
139 B
C
Raw Normal View History

2025-05-28 14:41:02 -05:00
#include <stdio.h>
#include <kernel/syscalls.h>
int16_t syscall_write(int32_t fd, const void* buffer, int32_t length)
{
return -1;
}