comparison lib-src/sorted-doc.c @ 31884:7b52b49d1148

Include config.h. [!HAVE_STDLIB_H]: Declare malloc.
author Dave Love <fx@gnu.org>
date Mon, 25 Sep 2000 17:39:03 +0000
parents 32a7344ac2e7
children c8fb06423da0
comparison
equal deleted inserted replaced
31883:c2b1c16d926c 31884:7b52b49d1148
3 a file of texinfo input containing the doc strings. 3 a file of texinfo input containing the doc strings.
4 4
5 This version sorts the output by function name. 5 This version sorts the output by function name.
6 */ 6 */
7 7
8 #include "config.h"
8 #include <stdio.h> 9 #include <stdio.h>
9 #include <ctype.h> 10 #include <ctype.h>
10 11 #ifndef HAVE_STDLIB_H /* config.h includes stdlib. */
11 extern char *malloc (); 12 extern char *malloc ();
12 char *xmalloc (); 13 #endif
13 14
14 #define NUL '\0' 15 #define NUL '\0'
15 #define MARKER '\037' 16 #define MARKER '\037'
16 17
17 #define DEBUG 0 18 #define DEBUG 0