aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/symbian/src/portdefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/symbian/src/portdefs.h')
-rw-r--r--backends/platform/symbian/src/portdefs.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/backends/platform/symbian/src/portdefs.h b/backends/platform/symbian/src/portdefs.h
index 303fde726d..4afdf33fb9 100644
--- a/backends/platform/symbian/src/portdefs.h
+++ b/backends/platform/symbian/src/portdefs.h
@@ -21,7 +21,8 @@
* $URL$
* $Id$
*/
-
+#ifndef SYMBIAN_PORTDEFS_H
+#define SYMBIAN_PORTDEFS_H
#include <assert.h>
#include <stdarg.h>
#include <string.h>
@@ -122,6 +123,9 @@
#define snprintf scumm_snprintf
#define vsnprintf scumm_vsnprintf
+ void* symbian_malloc (size_t _size);
+
+ #define malloc symbian_malloc
#else // GCCE and the rest
#define snprintf(buf,len,args...) sprintf(buf,args)
#define vsnprintf(buf,len,format,valist) vsprintf(buf,format,valist)
@@ -146,3 +150,4 @@ namespace Symbian {
extern void FatalError(const char *msg);
extern char* GetExecutablePath();
}
+#endif