]> sjero.net Git - wget/commitdiff
[svn] Include string.h.
authorhniksic <devnull@localhost>
Fri, 6 Apr 2001 03:43:35 +0000 (20:43 -0700)
committerhniksic <devnull@localhost>
Fri, 6 Apr 2001 03:43:35 +0000 (20:43 -0700)
src/ChangeLog
src/hash.c

index 90507a22046d3c72759edee797c558c1c3fefa44..862b7766b6e0e3d915cb0b7cf5a8924f03f6408a 100644 (file)
@@ -1,3 +1,7 @@
+2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
+
+       * hash.c: Include <string.h>.
+
 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
 
        * config.h.in: Define "compilation environment" options that work
index 45974dad0c72a700695486b133495fd3034019a7..38bc284ae59c3c1b8f6d05b1947ade5dc4457e1f 100644 (file)
@@ -21,6 +21,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 # include <config.h>
 #endif
 
+#ifdef HAVE_STRING_H
+# include <string.h>
+#else
+# include <strings.h>
+#endif /* HAVE_STRING_H */
 #include <stdlib.h>
 #include <assert.h>