1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

got rid of the memcpy() prototype and used includes.h instead.

gcc has a built-in memcpy which conflicts with the prototype.
This commit is contained in:
Andrew Tridgell
-
parent 3fd28812f7
commit 16b6c3e852

View File

@ -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)