]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
tests/tcg/sha1: remove endian include
authorAlex Bennée <alex.bennee@linaro.org>
Fri, 17 Sep 2021 16:23:23 +0000 (17:23 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Tue, 12 Oct 2021 07:37:05 +0000 (08:37 +0100)
This doesn't exist in BSD world and doesn't seem to be needed by
either.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Message-Id: <20210917162332.3511179-3-alex.bennee@linaro.org>

tests/tcg/multiarch/sha1.c

index 87bfbcdf52d4e54d44265a556f9acc0db9f8b5e7..0081bd7657761e7d527d30ea965c47b9b8ab5c3f 100644 (file)
@@ -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 <endian.h>
 
 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))