14 lines
205 B
C
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_
|