jit: fix linux

This commit is contained in:
RSDuck
2019-07-14 02:37:32 +02:00
committed by RSDuck
parent 24aff49ae4
commit 0ff79ea2ad
7 changed files with 193 additions and 194 deletions

View File

@ -4,12 +4,13 @@
#include <stdio.h>
#define PanicAlert(msg) \
do \
{ \
printf("%s\n", msg); \
Crash(); \
} while (false)
#define PanicAlert(fmt, ...) \
do \
{ \
printf(fmt "\n", ## __VA_ARGS__); \
abort(); \
} while (false)
#define DYNA_REC 0