feat(io): implement printf and strlen

This commit is contained in:
2026-01-26 01:40:11 +01:00
parent 5cd7aa3cab
commit 889a16d168
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