syscalls: start implementing some basic syscalls

This commit is contained in:
2025-06-20 21:59:08 +03:00
parent a9789b7f57
commit 4ccae473ca
8 changed files with 110 additions and 12 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ void intToString(int value, char *buffer, char format) {
buffer[i] = '\0';
}
static bool print(const char* data, size_t length) {
bool print(const char* data, size_t length) {
const unsigned char* bytes = (const unsigned char*) data;
for (size_t i = 0; i < length; i++)
if (putchar(bytes[i]) == EOF)