summaryrefslogtreecommitdiff
path: root/kernel/lib.h
blob: c325dfd34c05305274c9b2c2b7c4a3d86123a030 (plain)
1
2
3
4
5
6
7
8
9
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*);