summaryrefslogtreecommitdiffstats
path: root/Alloc.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:46:27 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:46:27 +0000
commit8f0dfe974c171b0ef83f822c97aeef6a89b8641a (patch)
tree9e199f867cfd6b44a126096fc9c104f3a018338e /Alloc.h
parentAdding upstream version 1.3. (diff)
downloadpdlzip-8f0dfe974c171b0ef83f822c97aeef6a89b8641a.tar.xz
pdlzip-8f0dfe974c171b0ef83f822c97aeef6a89b8641a.zip
Adding upstream version 1.4~rc1.upstream/1.4_rc1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'Alloc.h')
-rw-r--r--Alloc.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/Alloc.h b/Alloc.h
deleted file mode 100644
index 6b3f034..0000000
--- a/Alloc.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/* Alloc.h -- Memory allocation functions
-2009-02-07 : Igor Pavlov : Public domain */
-
-#ifndef __COMMON_ALLOC_H
-#define __COMMON_ALLOC_H
-
-#include <stddef.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void *MyAlloc(size_t size);
-void MyFree(void *address);
-
-#ifdef _WIN32
-
-void SetLargePageSize();
-
-void *MidAlloc(size_t size);
-void MidFree(void *address);
-void *BigAlloc(size_t size);
-void BigFree(void *address);
-
-#else
-
-#define MidAlloc(size) MyAlloc(size)
-#define MidFree(address) MyFree(address)
-#define BigAlloc(size) MyAlloc(size)
-#define BigFree(address) MyFree(address)
-
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif