1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Include string.h.

This commit is contained in:
hniksic 2001-04-05 20:43:35 -07:00
parent 4bc1d37ccf
commit 3ecad253f2
2 changed files with 9 additions and 0 deletions

View 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

View 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>