11 lines
139 B
C
11 lines
139 B
C
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include <kernel/syscalls.h>
|
||
|
|
||
|
|
||
|
int16_t syscall_write(int32_t fd, const void* buffer, int32_t length)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|