From 16b6c3e852dbc7b4460abc461b4e0a8dc315fd60 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 29 Sep 1998 00:11:27 +0000 Subject: got rid of the memcpy() prototype and used includes.h instead. gcc has a built-in memcpy which conflicts with the prototype. --- source/lib/md4.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source/lib') diff --git a/source/lib/md4.c b/source/lib/md4.c index f0050ee6476..30f2b6b8c6b 100644 --- a/source/lib/md4.c +++ b/source/lib/md4.c @@ -19,15 +19,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -void *memcpy (void *, void *, unsigned int); +#include "includes.h" /* NOTE: This code makes no attempt to be fast! It assumes that a int is at least 32 bits long */ -typedef unsigned int uint32; - static uint32 A, B, C, D; static uint32 F(uint32 X, uint32 Y, uint32 Z) -- cgit