aboutsummaryrefslogtreecommitdiff
path: root/backends/wince
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince')
-rw-r--r--backends/wince/missing/missing.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/wince/missing/missing.cpp b/backends/wince/missing/missing.cpp
index ba6e1042fb..43d99d8a9b 100644
--- a/backends/wince/missing/missing.cpp
+++ b/backends/wince/missing/missing.cpp
@@ -391,6 +391,10 @@ void *bsearch(const void *key, const void *base, size_t nmemb,
#if _WIN32_WCE < 300 || defined(_TEST_HPC_STDIO)
+int _heapchk() {
+ return _HEAPOK;
+}
+
void *calloc(size_t n, size_t s) {
void *result = malloc(n * s);
if (result)