From 11356e88b736799e2613246721bd63e49d8defcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 27 Apr 2005 11:55:05 +0000 Subject: [PATCH] Include hash.h first. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14977 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/md4.c | 2 +- lib/des/md5.c | 2 +- lib/des/sha.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/des/md4.c b/lib/des/md4.c index 999f57ca3..68ca9329f 100644 --- a/lib/des/md4.c +++ b/lib/des/md4.c @@ -37,8 +37,8 @@ RCSID("$Id$"); #endif -#include "md4.h" #include "hash.h" +#include "md4.h" #define A m->counter[0] #define B m->counter[1] diff --git a/lib/des/md5.c b/lib/des/md5.c index df6ac7dc8..2a84446c0 100644 --- a/lib/des/md5.c +++ b/lib/des/md5.c @@ -37,8 +37,8 @@ RCSID("$Id$"); #endif -#include "md5.h" #include "hash.h" +#include "md5.h" #define A m->counter[0] #define B m->counter[1] diff --git a/lib/des/sha.c b/lib/des/sha.c index d1d5ee0fa..63c36fd62 100644 --- a/lib/des/sha.c +++ b/lib/des/sha.c @@ -37,8 +37,8 @@ RCSID("$Id$"); #endif -#include "sha.h" #include "hash.h" +#include "sha.h" #define A m->counter[0] #define B m->counter[1]