diff options
author | Alex Auvolat <alex@adnab.me> | 2016-07-15 23:12:14 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2016-07-15 23:12:14 +0200 |
commit | 32407e728971006ed3d0885e01c22fb66c8adc57 (patch) | |
tree | 89483d39e8e2638383f815d4e73b647334fe2fe9 /src/common/include/debug.h | |
parent | ba4e59a1d687173ac5cfa74d26d71d6059dc6bc6 (diff) | |
download | kogata-32407e728971006ed3d0885e01c22fb66c8adc57.tar.gz kogata-32407e728971006ed3d0885e01c22fb66c8adc57.zip |
Move stuff around, again
Diffstat (limited to 'src/common/include/debug.h')
-rw-r--r-- | src/common/include/debug.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/common/include/debug.h b/src/common/include/debug.h deleted file mode 100644 index 2db5a80..0000000 --- a/src/common/include/debug.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -#include <stddef.h> -#include <stdint.h> - -void sys_panic(const char* message, const char* file, int line) -__attribute__((__noreturn__)); - -void sys_panic_assert(const char* assertion, const char* file, int line) -__attribute__((__noreturn__)); - -#define PANIC(s) sys_panic(s, __FILE__, __LINE__); -#define ASSERT(s) { if (!(s)) sys_panic_assert(#s, __FILE__, __LINE__); } - -void dbg_print(const char* str); -void dbg_printf(const char* format, ...); - -/* vim: set ts=4 sw=4 tw=0 noet :*/ |