summaryrefslogtreecommitdiff
path: root/tools/gbagfx/global.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-11-01 07:59:44 -0700
committerYamaArashi <shadow962@live.com>2016-11-01 07:59:44 -0700
commit74834c0ca0979886b3d63d6454b75de9cbb7f409 (patch)
tree5c9425241aa0a134831c2fb2f4adb3a29b9629f3 /tools/gbagfx/global.h
parent343389467108cd99fb315131881b5f3f19261383 (diff)
remove old tools
Diffstat (limited to 'tools/gbagfx/global.h')
-rw-r--r--tools/gbagfx/global.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/gbagfx/global.h b/tools/gbagfx/global.h
deleted file mode 100644
index 65dd351d2..000000000
--- a/tools/gbagfx/global.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2015 YamaArashi
-
-#ifndef GLOBAL_H
-#define GLOBAL_H
-
-#include <stdio.h>
-#include <stdlib.h>
-
-#ifdef _MSC_VER
-
-#define FATAL_ERROR(format, ...) \
-do { \
- fprintf(stderr, format, __VA_ARGS__); \
- exit(1); \
-} while (0)
-
-#define UNUSED
-
-#else
-
-#define FATAL_ERROR(format, ...) \
-do { \
- fprintf(stderr, format, ##__VA_ARGS__); \
- exit(1); \
-} while (0)
-
-#define UNUSED __attribute__((__unused__))
-
-#endif // _MSC_VER
-
-#endif // GLOBAL_H