From: Christos Zoulas Date: Thu, 21 Apr 2016 14:26:03 +0000 (+0000) Subject: no need for err.h unless we are debugging. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1434d2122955f9c0dce1a45a353dbbc2dea47876;p=file no need for err.h unless we are debugging. --- diff --git a/src/der.c b/src/der.c index 73c0072b..af5f1494 100644 --- a/src/der.c +++ b/src/der.c @@ -35,7 +35,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: der.c,v 1.5 2016/04/17 19:44:45 christos Exp $") +FILE_RCSID("@(#)$File: der.c,v 1.6 2016/04/21 14:26:03 christos Exp $") #endif #endif @@ -44,7 +44,6 @@ FILE_RCSID("@(#)$File: der.c,v 1.5 2016/04/17 19:44:45 christos Exp $") #include #include -#include #include #include #include @@ -53,6 +52,8 @@ FILE_RCSID("@(#)$File: der.c,v 1.5 2016/04/17 19:44:45 christos Exp $") #ifndef TEST_DER #include "magic.h" #include "der.h" +#else +#include #endif #define DER_BAD ((uint32_t)-1)