aboutsummaryrefslogtreecommitdiffstats
path: root/crypt-md4.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2002-12-03 15:21:28 +0000
committerGerald Combs <gerald@wireshark.org>2002-12-03 15:21:28 +0000
commit9967550369ca3d4bee35732418b4d070185f62a4 (patch)
tree48b6066df7d9708ef62a5a6ced0971455cb1fda5 /crypt-md4.c
parent15db969b7a4bf0772708cd307c6a518b372e75c7 (diff)
Include <string.h> so that memcpy() is properly declared.
svn path=/trunk/; revision=6740
Diffstat (limited to 'crypt-md4.c')
-rw-r--r--crypt-md4.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypt-md4.c b/crypt-md4.c
index 5ec24b8c75..6044b25a34 100644
--- a/crypt-md4.c
+++ b/crypt-md4.c
@@ -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!