old-trainOS/include/kernel.h

16 lines
199 B
C
Raw Permalink Normal View History

2015-08-13 12:56:50 +00:00
#pragma once
#include <inttypes.h>
#if defined(__cplusplus)
extern "C" {
#endif
void die(const char *msg);
void die_extra(const char *msg, const char *extra);
2015-08-13 12:56:50 +00:00
#if defined(__cplusplus)
}
#endif