aboutsummaryrefslogtreecommitdiffstats
path: root/xmalloc.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2016-12-12 02:55:20 +0100
committerMatthias Andree <matthias.andree@gmx.de>2016-12-12 02:55:20 +0100
commita3c08a3c2eb026a582575dee047f13781d1d4d83 (patch)
tree8948755a6dd83085ab67c406bf6e4ee8bd38e535 /xmalloc.c
parent00772c13773cb20747fb7a1d590218cd46646b82 (diff)
parent0aeab1198903075c1e4d1cee5dda2322d22a7955 (diff)
downloadfetchmail-a3c08a3c2eb026a582575dee047f13781d1d4d83.tar.gz
fetchmail-a3c08a3c2eb026a582575dee047f13781d1d4d83.tar.bz2
fetchmail-a3c08a3c2eb026a582575dee047f13781d1d4d83.zip
Merge branch 'uidl-speedup-n-log-n-64' into legacy_64
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/xmalloc.c b/xmalloc.c
index c2ca4a66..44143a70 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -6,6 +6,7 @@
*/
#include "config.h"
+#include "xmalloc.h"
#include <sys/types.h>
#include <stdio.h>
#include <errno.h>
@@ -16,12 +17,6 @@
#include "fetchmail.h"
#include "i18n.h"
-#if defined(HAVE_VOIDPOINTER)
-#define XMALLOCTYPE void
-#else
-#define XMALLOCTYPE char
-#endif
-
XMALLOCTYPE *
xmalloc (size_t n)
{