1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-01-25 04:40:17 +01:00
2019-02-03 09:38:29 -06:00

32 lines
667 B
C

// mapjson.h
#ifndef MAPJSON_H
#define MAPJSON_H
#include <cstdio>
using std::fprintf; using std::exit;
#include <cstdlib>
#ifdef _MSC_VER
#define FATAL_ERROR(format, ...) \
do \
{ \
fprintf(stderr, format, __VA_ARGS__); \
exit(1); \
} while (0)
#else
#define FATAL_ERROR(format, ...) \
do \
{ \
fprintf(stderr, format, ##__VA_ARGS__); \
exit(1); \
} while (0)
#endif // _MSC_VER
#endif // MAPJSON_H