diff options
author | quou <quou@disroot.org> | 2023-05-02 21:02:04 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-02 21:02:04 +1000 |
commit | c1efdf9b0875f2a39488a86cd838947a24fab9fc (patch) | |
tree | b459d024fa99029758f8d2f8630470fe6060122e /platform.h |
Initial commit.
Diffstat (limited to 'platform.h')
-rw-r--r-- | platform.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/platform.h b/platform.h new file mode 100644 index 0000000..bd3bc21 --- /dev/null +++ b/platform.h @@ -0,0 +1,10 @@ +#ifndef platform_h +#define platform_h + +void platform_quit(); + +void platform_log(const char* message, ...); +void platform_err(const char* message, ...); +void platform_abort(int code); + +#endif |