Files
exkernel/kernel.h
Fabio Scotto di Santolo c59b4004e5 Implemented project structure
2025-11-29 18:43:07 +01:00

14 lines
205 B
C

#ifndef KERNEL_H_
#define KERNEL_H_
typedef unsigned char uint8_t;
typedef unsigned int uint32_t;
typedef uint32_t size_t;
typedef struct {
long error;
long value;
} sbiret;
#endif // KERNEL_H_