Upload files to "include/kernel"

This commit is contained in:
2025-05-20 20:41:14 -05:00
parent 78b803f4c1
commit f95f22640e
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#ifndef _SYSCALLS_H
#define _SYSCALLS_H
#include <stdint.h>
int16_t syscall_write(int32_t fd, const void* buffer, int32_t length);
#endif