hammer/src/platform_win32.c

11 lines
205 B
C
Raw Normal View History

#include "platform.h"
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
void h_platform_errx(int err, const char* format, ...) {
// FIXME(windows) TODO(uucidl): to be implemented
ExitProcess(err);
}