summaryrefslogtreecommitdiff
path: root/global.h
blob: 61d8cee08b1a2db86b6c54300651aec8911a8a5f (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <stdint.h>
#include <inttypes.h>

typedef int64_t i64;
typedef uint64_t u64;


void throw(const char *format,...) __attribute__((noreturn, format (printf, 1, 2)));