diff options
Diffstat (limited to 'lib-src/sorted-doc.c')
-rw-r--r-- | lib-src/sorted-doc.c | 5 |
1 files 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 <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' |