Initial commit
This commit is contained in:
10
kernel/lib.h
Normal file
10
kernel/lib.h
Normal file
@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
#define NULL (0)
|
||||
|
||||
typedef unsigned int uint32_t;
|
||||
typedef int int32_t;
|
||||
|
||||
static_assert(sizeof(uint32_t) == 4);
|
||||
|
||||
void panic(const char*);
|
Reference in New Issue
Block a user