From: Alex Bennée Date: Fri, 17 Sep 2021 16:23:23 +0000 (+0100) Subject: tests/tcg/sha1: remove endian include X-Git-Tag: v6.2.0-rc0~61^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f0ebed41809531e4e84658b8ac1742c4ba6966a;p=thirdparty%2Fqemu.git tests/tcg/sha1: remove endian include This doesn't exist in BSD world and doesn't seem to be needed by either. Signed-off-by: Alex Bennée Reviewed-by: Warner Losh Message-Id: <20210917162332.3511179-3-alex.bennee@linaro.org> --- diff --git a/tests/tcg/multiarch/sha1.c b/tests/tcg/multiarch/sha1.c index 87bfbcdf52d..0081bd76577 100644 --- a/tests/tcg/multiarch/sha1.c +++ b/tests/tcg/multiarch/sha1.c @@ -43,7 +43,6 @@ void SHA1Init(SHA1_CTX* context); void SHA1Update(SHA1_CTX* context, const unsigned char* data, uint32_t len); void SHA1Final(unsigned char digest[20], SHA1_CTX* context); /* ================ end of sha1.h ================ */ -#include #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))