changeset 1181:4adfa396b1e5

Include <string.h> if available.
author Jim Meyering <jim@meyering.net>
date Thu, 25 Dec 1997 16:48:51 +0000
parents cb402c045fe5
children eb996ec5e40a
files lib/path-concat.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/path-concat.c
+++ b/lib/path-concat.c
@@ -26,6 +26,9 @@
 #endif
 
 #include <stdio.h>
+#ifdef HAVE_STRING_H
+# include <string.h>
+#endif
 #include <sys/types.h>
 
 char *malloc ();