From 13688fb928c8079851c41083a6b7b1504a1bbea5 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Mon, 25 Sep 2000 17:39:03 +0000 Subject: [PATCH] Include config.h. [!HAVE_STDLIB_H]: Declare malloc. --- lib-src/sorted-doc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib-src/sorted-doc.c b/lib-src/sorted-doc.c index 5e98df2c0c0..280460dfdae 100644 --- a/lib-src/sorted-doc.c +++ b/lib-src/sorted-doc.c @@ -5,11 +5,12 @@ This version sorts the output by function name. */ +#include "config.h" #include #include - +#ifndef HAVE_STDLIB_H /* config.h includes stdlib. */ extern char *malloc (); -char *xmalloc (); +#endif #define NUL '\0' #define MARKER '\037' -- 2.39.5