Commit 49048686 4904868632554bde98f39c47d9e97c1b7834a9e2 by Sam Roberts

Made inclusions of <malloc.h> conditional on autoconf check.

1 parent 891c1201
......@@ -50,7 +50,9 @@ char *alloca ();
#include <string.h>
#include <assert.h>
#include <stdarg.h>
#include <malloc.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#include <ctype.h>
#ifdef HAVE_STRINGS_H
......
......@@ -20,7 +20,10 @@
#include <mailutils/mailutils.h>
#include <stdio.h>
#include <malloc.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#include <mu_argp.h>
......