summaryrefslogtreecommitdiff
path: root/src/common/malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r--src/common/malloc.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common/malloc.h b/src/common/malloc.h
index 503eba75b..d6f6adb3c 100644
--- a/src/common/malloc.h
+++ b/src/common/malloc.h
@@ -10,8 +10,6 @@
// and I have doubts our implementation works.
// -> They should NOT be used, period.
-#define MEMSET_TURBO
-
#ifndef __NETBSD__
#if __STDC_VERSION__ < 199901L
# if __GNUC__ >= 2
@@ -163,15 +161,6 @@ unsigned int malloc_usage (void);
#define INLINE inline
#endif
#endif
-#if defined(MEMSET_TURBO) && defined(_WIN32)
- INLINE void malloc_set(void *, int, int);
- INLINE void malloc_tsetdword(void *, int, int);
- INLINE void malloc_tsetword(void *, short, int);
-#else
- #define malloc_set(x,y,z) memset(x,y,z)
- #define malloc_tsetdword(x,y,z) memset(x,y,z)
- #define malloc_tsetword(x,y,z) memset(x,y,z)
-#endif
void malloc_init (void);
void malloc_final (void);