From e0c0757d0925d7f83e2e107861c4e3ec8f525108 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 23 Jun 2001 13:49:14 +0000 Subject: These were broken when using dmalloc due to include file ordering problems. busybox.h must be last. -Erik --- coreutils/md5sum.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) (limited to 'coreutils') diff --git a/coreutils/md5sum.c b/coreutils/md5sum.c index e5a2abe78..dcb05c156 100644 --- a/coreutils/md5sum.c +++ b/coreutils/md5sum.c @@ -24,6 +24,13 @@ #include #include #include +#include +#include +#include +#include +#if defined HAVE_LIMITS_H +# include +#endif #include "busybox.h" /* For some silly reason, this file uses backwards TRUE and FALSE conventions */ @@ -60,12 +67,6 @@ /* Written by Ulrich Drepper , 1995. */ -#include -#include -#include -#include - -#include "busybox.h" //---------------------------------------------------------------------------- //--------md5.h //---------------------------------------------------------------------------- @@ -93,12 +94,6 @@ #ifndef _MD5_H static const int _MD5_H = 1; -#include - -#if defined HAVE_LIMITS_H || defined _LIBC -# include -#endif - /* The following contortions are an attempt to use the C preprocessor to determine an unsigned integral type that is 32 bits wide. An alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but @@ -106,7 +101,6 @@ static const int _MD5_H = 1; the resulting executable. Locally running cross-compiled executables is usually not possible. */ -# include typedef u_int32_t md5_uint32; /* Structure to save state of computation between the single steps. */ -- cgit v1.2.3