summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/xmalloc.c19
1 files changed, 4 insertions, 15 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index ead50393d..3adf5dda8 100644
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -21,28 +21,17 @@
# include <config.h>
#endif
-#include <sys/types.h>
-
-#if STDC_HEADERS
-# include <stdlib.h>
-#else
-void *calloc ();
-void *malloc ();
-void *realloc ();
-void free ();
-#endif
+#include "xalloc.h"
+
+#include <stdlib.h>
#include "gettext.h"
#define _(msgid) gettext (msgid)
#define N_(msgid) msgid
#include "error.h"
+#include "exit.h"
#include "exitfail.h"
-#include "xalloc.h"
-
-#ifndef EXIT_FAILURE
-# define EXIT_FAILURE 1
-#endif
/* The following tests require AC_PREREQ(2.54). */