From 1ab6205ce117ac9585918aaf9935ce90f06402cd Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Fri, 25 Oct 1996 06:48:29 +0000 Subject: [PATCH] Moved #include of earlier so that this compiles when doesn't (bogusly) include . Cleaned up #includes. --- lib/libmd/mdXhl.c | 15 ++++++++------- sbin/md5/md5.c | 13 ++++++++----- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/lib/libmd/mdXhl.c b/lib/libmd/mdXhl.c index ffab03a52737..913e2900d0cb 100644 --- a/lib/libmd/mdXhl.c +++ b/lib/libmd/mdXhl.c @@ -6,19 +6,20 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: mdXhl.c,v 1.6 1995/07/12 09:13:47 phk Exp $ + * $Id: mdXhl.c,v 1.7 1996/07/24 20:55:38 phk Exp $ * */ -#include -#include -#include -#include "mdX.h" -#include #include -#include +#include #include +#include +#include +#include + +#include "mdX.h" + char * MDXEnd(MDX_CTX *ctx, char *buf) { diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 8c9ecfbe0601..e3e598612d27 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -1,5 +1,5 @@ /* - * $Id: md5.c,v 1.5 1995/05/30 06:09:19 rgrimes Exp $ + * $Id: md5.c,v 1.6 1995/07/12 09:14:46 phk Exp $ * * Derived from: */ @@ -21,12 +21,15 @@ * documentation and/or software. */ -#include -#include -#include -#include "global.h" +#include #include +#include +#include +#include + +#include "global.h" + /* * Length of test block, number of test blocks. */