aboutsummaryrefslogtreecommitdiff
path: root/platform.h
blob: 0001f8b5a73f939adb033f4d3c92bc1910415ab8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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);

int platform_get_time();

#endif