runtime/native/src/log.h
2024-06-04 17:50:17 -04:00

11 lines
200 B
C

#pragma once
#include <cstdio>
#include <cstdlib>
#define ERR(format, ...) \
{ \
fprintf(stderr, "TRAMPOLINE ERROR: " format "\n", ##__VA_ARGS__); \
exit(EXIT_FAILURE); \
}