feat(io): implement printf and strlen

This commit is contained in:
2026-01-26 01:40:11 +01:00
parent ef9899bac1
commit 4cc12e6e26
5 changed files with 179 additions and 9 deletions

9
include/kernel.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef RIVOS_KERNEL_H
#define RIVOS_KERNEL_H
typedef struct sbiret_s {
long error;
long value;
} sbiret_s;
#endif