aboutsummaryrefslogtreecommitdiff
path: root/common/engine.h
diff options
context:
space:
mode:
authorMax Horn2003-09-10 12:15:51 +0000
committerMax Horn2003-09-10 12:15:51 +0000
commit110152ddcf0ba53528b7f8eaa0a96f2e8349841c (patch)
tree22a51f27c9f433bed4e8c2aa475212caf99c69ba /common/engine.h
parent77ae18255bb5ac555087ee3314e8ea9c02a6c436 (diff)
downloadscummvm-rg350-110152ddcf0ba53528b7f8eaa0a96f2e8349841c.tar.gz
scummvm-rg350-110152ddcf0ba53528b7f8eaa0a96f2e8349841c.tar.bz2
scummvm-rg350-110152ddcf0ba53528b7f8eaa0a96f2e8349841c.zip
moved declaration of error/warning/debug from engine.h to util.h
svn-id: r10149
Diffstat (limited to 'common/engine.h')
-rw-r--r--common/engine.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/common/engine.h b/common/engine.h
index 58559dd4b5..bcab61efc6 100644
--- a/common/engine.h
+++ b/common/engine.h
@@ -81,16 +81,5 @@ public:
extern Engine *g_engine;
-#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