aboutsummaryrefslogtreecommitdiffstats
path: root/crypt-md4.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-12-03 15:21:28 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-12-03 15:21:28 +0000
commit067f10bc93fbc52c296fe404d29dbecad6b44ce0 (patch)
tree48b6066df7d9708ef62a5a6ced0971455cb1fda5 /crypt-md4.c
parentb3169ebf40c00a95970932d78032ec7aa3e86103 (diff)
Include <string.h> so that memcpy() is properly declared.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6740 f5534014-38df-0310-8fa8-9805f1628bb7
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!