From: Dave Love Date: Mon, 25 Sep 2000 17:39:03 +0000 (+0000) Subject: Include config.h. X-Git-Tag: emacs-pretest-21.0.90~1389 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=13688fb928c8079851c41083a6b7b1504a1bbea5;p=emacs.git Include config.h. [!HAVE_STDLIB_H]: Declare malloc. --- 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'