aboutsummaryrefslogtreecommitdiff
path: root/common/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/engine.h')
-rw-r--r--common/engine.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/engine.h b/common/engine.h
index 6241d70a7f..8ca47dd17e 100644
--- a/common/engine.h
+++ b/common/engine.h
@@ -56,5 +56,17 @@ public:
static Engine *createFromDetector(GameDetector *detector, OSystem *syst);
};
+#if defined(__GNUC__)
+void CDECL error(const char *s, ...) NORETURN;
+#else
+void CDECL NORETURN error(const char *s, ...);
+#endif
+
+void CDECL warning(const char *s, ...);
+
+void CDECL debug(int level, const char *s, ...);
+void checkHeap();
+
#endif
+