aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2009-08-05 16:27:47 +0000
committerMatthias Andree <matthias.andree@gmx.de>2009-08-05 16:27:47 +0000
commitc8f608f4c4c6d2eb6cb7b12cb60de04cadcb3750 (patch)
tree99b131162e6c7b1d87ea295ed09b1fbeb6ffd66f /fetchmail.h
parent62acd57d67fff935e1c8a1796853e911869ee9f8 (diff)
downloadfetchmail-c8f608f4c4c6d2eb6cb7b12cb60de04cadcb3750.tar.gz
fetchmail-c8f608f4c4c6d2eb6cb7b12cb60de04cadcb3750.tar.bz2
fetchmail-c8f608f4c4c6d2eb6cb7b12cb60de04cadcb3750.zip
Add sdump(), split xmalloc.h out of fetchmail.h
svn path=/branches/BRANCH_6-3/; revision=5390
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/fetchmail.h b/fetchmail.h
index afbf0d72..702fcae5 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -623,16 +623,7 @@ void interface_parse(char *, struct hostdata *);
void interface_note_activity(struct hostdata *);
int interface_approve(struct hostdata *, flag domonitor);
-/* xmalloc.c */
-#if defined(HAVE_VOIDPOINTER)
-#define XMALLOCTYPE void
-#else
-#define XMALLOCTYPE char
-#endif
-XMALLOCTYPE *xmalloc(size_t);
-XMALLOCTYPE *xrealloc(/*@null@*/ XMALLOCTYPE *, size_t);
-#define xfree(p) { if (p) { free(p); } (p) = 0; }
-char *xstrdup(const char *);
+#include "xmalloc.h"
/* protocol driver and methods */
int doPOP2 (struct query *);