refactor(kernel): change sbiret struct name

This commit is contained in:
2026-01-26 15:22:24 +01:00
parent ff788bb819
commit b9b8d1147c

View File

@@ -1,9 +1,11 @@
#ifndef RIVOS_KERNEL_H
#define RIVOS_KERNEL_H
typedef struct sbiret_s {
typedef struct sbiret {
long error;
long value;
} sbiret_s;
void kputchar(char ch);
#endif