Files
Espresso/include/kernel/syscalls.h

9 lines
141 B
C
Raw Normal View History

2025-05-28 14:41:02 -05:00
#ifndef _SYSCALLS_H
#define _SYSCALLS_H
#include <stdint.h>
int16_t syscall_write(int32_t fd, const void* buffer, int32_t length);
#endif