Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2011-06-26 01:18:14 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:20:05 +0300
commitc58c4ec772b6c924246b20f12c90cb2a803b5034 (patch)
tree315a591817ec314171649f29e012c6ffae28ff19 /std/cstdio.hpp
parentbb666aaa3d97c045a67f0c2910a1b9d70c475c6a (diff)
Replace stdlib.hpp with cstdlib.hpp;
Replace stdio.hpp with cstdio.hpp; Replace time.hpp with systime.hpp;
Diffstat (limited to 'std/cstdio.hpp')
-rw-r--r--std/cstdio.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/std/cstdio.hpp b/std/cstdio.hpp
new file mode 100644
index 0000000000..6831cc9b85
--- /dev/null
+++ b/std/cstdio.hpp
@@ -0,0 +1,12 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <cstdio>
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif