aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib-src/cvtmail.c4
-rw-r--r--lib-src/sorted-doc.c4
-rw-r--r--lib-src/yow.c4
3 files changed, 12 insertions, 0 deletions
diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c
index 20ef3412439..83242a988a9 100644
--- a/lib-src/cvtmail.c
+++ b/lib-src/cvtmail.c
@@ -36,6 +36,10 @@ Boston, MA 02111-1307, USA. */
36 36
37#include <stdio.h> 37#include <stdio.h>
38 38
39#ifdef __GNU_LIBRARY__
40# include <string.h>
41#endif
42
39char *malloc (); 43char *malloc ();
40char *realloc (); 44char *realloc ();
41char *getenv (); 45char *getenv ();
diff --git a/lib-src/sorted-doc.c b/lib-src/sorted-doc.c
index 0ba419d4907..cb521866ab5 100644
--- a/lib-src/sorted-doc.c
+++ b/lib-src/sorted-doc.c
@@ -8,6 +8,10 @@
8#include <stdio.h> 8#include <stdio.h>
9#include <ctype.h> 9#include <ctype.h>
10 10
11#ifdef __GNU_LIBRARY__
12# include <string.h>
13#endif
14
11extern char *malloc (); 15extern char *malloc ();
12char *xmalloc (); 16char *xmalloc ();
13 17
diff --git a/lib-src/yow.c b/lib-src/yow.c
index b67d2f1eeee..a37563a6f33 100644
--- a/lib-src/yow.c
+++ b/lib-src/yow.c
@@ -14,6 +14,10 @@
14#include <ctype.h> 14#include <ctype.h>
15#include <../src/paths.h> /* For PATH_DATA. */ 15#include <../src/paths.h> /* For PATH_DATA. */
16 16
17#ifdef __GNU_LIBRARY__
18# include <string.h>
19#endif
20
17#define BUFSIZE 80 21#define BUFSIZE 80
18#define SEP '\0' 22#define SEP '\0'
19 23