Include <string.h> so that memcpy() is properly declared.

svn path=/trunk/; revision=6740
This commit is contained in:
Gerald Combs 2002-12-03 15:21:28 +00:00
parent 15db969b7a
commit 9967550369
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@
a implementation of MD4 designed for use in the SMB authentication protocol
Copyright (C) Andrew Tridgell 1997-1998.
$Id: crypt-md4.c,v 1.1 2002/12/03 00:37:27 guy Exp $
$Id: crypt-md4.c,v 1.2 2002/12/03 15:21:28 gerald Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -23,7 +23,9 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include <string.h>
/* NOTE: This code makes no attempt to be fast!