]> code.delx.au - gnu-emacs/commitdiff
[__GNU_LIBRARY__]: Use <string.h>.
authorKarl Heuer <kwzh@gnu.org>
Mon, 15 Jul 1996 21:25:56 +0000 (21:25 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 15 Jul 1996 21:25:56 +0000 (21:25 +0000)
lib-src/cvtmail.c
lib-src/sorted-doc.c
lib-src/yow.c

index 20ef3412439d0525cd0cef0de07bca80b6729a11..83242a988a9dc2ef1a15ad602e27166e98dae866 100644 (file)
@@ -36,6 +36,10 @@ Boston, MA 02111-1307, USA.  */
 
 #include <stdio.h>
 
+#ifdef __GNU_LIBRARY__
+# include <string.h>
+#endif
+
 char *malloc ();
 char *realloc ();
 char *getenv ();
index 0ba419d490738ad0105f48c8333beca07cad73c5..cb521866ab5e09494e1c5782a5b3dfc56ccea5dd 100644 (file)
@@ -8,6 +8,10 @@
 #include <stdio.h>
 #include <ctype.h>
 
+#ifdef __GNU_LIBRARY__
+# include <string.h>
+#endif
+
 extern char *malloc ();
 char *xmalloc ();
 
index b67d2f1eeee5e7c61bc241fb76b94b3cdde22f40..a37563a6f3397ebc5d1e35f5a963daad03f1f8d3 100644 (file)
 #include <ctype.h>
 #include <../src/paths.h>      /* For PATH_DATA.  */
 
+#ifdef __GNU_LIBRARY__
+# include <string.h>
+#endif
+
 #define BUFSIZE  80
 #define SEP      '\0'