aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/posix
diff options
context:
space:
mode:
authorMax Horn2011-05-02 14:42:08 +0200
committerMax Horn2011-05-02 16:31:31 +0200
commit59e77ed66779d33a14a5f4d2a5885a70b793f36f (patch)
tree3ca3827f015218ff995faa8be78e21cd631be8ff /backends/platform/sdl/posix
parent58eebff8039bb5cfc9a66bcfadfe078abb94556f (diff)
downloadscummvm-rg350-59e77ed66779d33a14a5f4d2a5885a70b793f36f.tar.gz
scummvm-rg350-59e77ed66779d33a14a5f4d2a5885a70b793f36f.tar.bz2
scummvm-rg350-59e77ed66779d33a14a5f4d2a5885a70b793f36f.zip
ALL: Mark printf and various other symbols as forbidden
Right now, a few places in the frontend code still use printf and consorts. We mark the affected files with a FIXME for now, and add a dedicated exception for each. To be fixed! Also tweak FORBIDDEN_SYMBOL_REPLACEMENT to hopefully really always enforce a compiler error
Diffstat (limited to 'backends/platform/sdl/posix')
-rw-r--r--backends/platform/sdl/posix/posix.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/platform/sdl/posix/posix.cpp b/backends/platform/sdl/posix/posix.cpp
index 71a88265a0..889bc5cd5e 100644
--- a/backends/platform/sdl/posix/posix.cpp
+++ b/backends/platform/sdl/posix/posix.cpp
@@ -23,6 +23,8 @@
*
*/
+#define FORBIDDEN_SYMBOL_EXCEPTION_mkdir
+
#include "common/scummsys.h"
#ifdef UNIX
@@ -34,6 +36,7 @@
#include <errno.h>
#include <sys/stat.h>
+
OSystem_POSIX::OSystem_POSIX(Common::String baseConfigName)
:
_baseConfigName(baseConfigName) {