Include string.h/strings.h to avoid memcpy() warning

This commit is contained in:
Anton E. Gavrilov 2000-05-21 23:07:22 +00:00
parent d5f18435ec
commit f070fecc94

View file

@ -18,7 +18,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include <config.h> # include "config.h"
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif #endif
#include "checksum.h" #include "checksum.h"
#include "crc.h" #include "crc.h"