11 lines
159 B
C
11 lines
159 B
C
#pragma once
|
|
|
|
#define NULL (0)
|
|
|
|
typedef unsigned int uint32_t;
|
|
typedef int int32_t;
|
|
|
|
static_assert(sizeof(uint32_t) == 4);
|
|
|
|
void panic(const char*);
|