changeset 15681:b0652f55a85d

[__GNU_LIBRARY__]: Use <string.h>.
author Karl Heuer <kwzh@gnu.org>
date Mon, 15 Jul 1996 21:25:56 +0000
parents 0f1c12e35879
children 9f7228c75a4b
files lib-src/cvtmail.c lib-src/sorted-doc.c lib-src/yow.c
diffstat 3 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/cvtmail.c	Mon Jul 15 20:26:39 1996 +0000
+++ b/lib-src/cvtmail.c	Mon Jul 15 21:25:56 1996 +0000
@@ -36,6 +36,10 @@
 
 #include <stdio.h>
 
+#ifdef __GNU_LIBRARY__
+# include <string.h>
+#endif
+
 char *malloc ();
 char *realloc ();
 char *getenv ();
--- a/lib-src/sorted-doc.c	Mon Jul 15 20:26:39 1996 +0000
+++ b/lib-src/sorted-doc.c	Mon Jul 15 21:25:56 1996 +0000
@@ -8,6 +8,10 @@
 #include <stdio.h>
 #include <ctype.h>
 
+#ifdef __GNU_LIBRARY__
+# include <string.h>
+#endif
+
 extern char *malloc ();
 char *xmalloc ();
 
--- a/lib-src/yow.c	Mon Jul 15 20:26:39 1996 +0000
+++ b/lib-src/yow.c	Mon Jul 15 21:25:56 1996 +0000
@@ -14,6 +14,10 @@
 #include <ctype.h>
 #include <../src/paths.h>      /* For PATH_DATA.  */
 
+#ifdef __GNU_LIBRARY__
+# include <string.h>
+#endif
+
 #define BUFSIZE  80
 #define SEP      '\0'