first pass at updating head branch to be to be the same as the SAMBA_2_0 branch
[kai/samba.git] / source3 / lib / md4.c
index 1c9c2e6ecd596b82b665e82b648088cfe11f0347..30f2b6b8c6b6848f354b4a8458d1537da60010b3 100644 (file)
@@ -2,7 +2,7 @@
    Unix SMB/Netbios implementation.
    Version 1.9.
    a implementation of MD4 designed for use in the SMB authentication protocol
-   Copyright (C) Andrew Tridgell 1997
+   Copyright (C) Andrew Tridgell 1997-1998.
    
    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
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
+#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)