]> git.eshelyaron.com Git - emacs.git/commitdiff
Include config.h.
authorDave Love <fx@gnu.org>
Mon, 25 Sep 2000 17:39:03 +0000 (17:39 +0000)
committerDave Love <fx@gnu.org>
Mon, 25 Sep 2000 17:39:03 +0000 (17:39 +0000)
[!HAVE_STDLIB_H]: Declare malloc.

lib-src/sorted-doc.c

index 5e98df2c0c0ce1d9de64c2b967b9ed3c208d6f56..280460dfdaea89419f8fd773de96b69e175e639f 100644 (file)
@@ -5,11 +5,12 @@
    This version sorts the output by function name.
    */
 
+#include "config.h"
 #include <stdio.h>
 #include <ctype.h>
-
+#ifndef HAVE_STDLIB_H          /* config.h includes stdlib.  */
 extern char *malloc ();
-char *xmalloc ();
+#endif
 
 #define NUL    '\0'
 #define MARKER '\037'