From b8980c2d1b57ee982a140aae2f500ce08d01ca72 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. (This used to be commit 16b6c3e852dbc7b4460abc461b4e0a8dc315fd60) --- source3/lib/md4.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/lib/md4.c') diff --git a/source3/lib/md4.c b/source3/lib/md4.c index f0050ee647..30f2b6b8c6 100644 --- a/source3/lib/md4.c +++ b/source3/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