From ac9109ff75a77e3e87291cd3cc0b1f7a51c8c728 Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Wed, 9 Nov 2016 14:14:24 +0000 Subject: [PATCH] hcrypto: Remove roken.h include from hash.h All of the hcrypto source files were updated with commit 0f97855826c070ac5539696b7797ce2ba219f5c5 to include roken.h. This means that hash.h no longer needs to include the roken header. Remove the multiple inclusion. --- lib/hcrypto/hash.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/hcrypto/hash.h b/lib/hcrypto/hash.h index 498e5b1af..019081487 100644 --- a/lib/hcrypto/hash.h +++ b/lib/hcrypto/hash.h @@ -40,7 +40,6 @@ #ifdef KRB5 #include #endif -#include #ifndef min #define min(a,b) (((a)>(b))?(b):(a))