From: Yu Watanabe Date: Wed, 2 Jun 2021 20:55:05 +0000 (+0900) Subject: efi: drop glibc header and use pre-defined macros X-Git-Tag: v249-rc1~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ffc36c276c47a9b3f21e83947090f11039628676;p=thirdparty%2Fsystemd.git efi: drop glibc header and use pre-defined macros This reverts 72dc626b3d6905b105ae61ca2c60f51a6f74070e and replace glibc specific macros with compiler's pre-defined macros. --- diff --git a/src/boot/efi/sha256.c b/src/boot/efi/sha256.c index 2108ea29c7a..6585fdb9b23 100644 --- a/src/boot/efi/sha256.c +++ b/src/boot/efi/sha256.c @@ -25,7 +25,7 @@ #include "sha256.h" -#if __BYTE_ORDER == __LITTLE_ENDIAN +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ # define SWAP(n) \ (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24)) # define SWAP64(n) \ diff --git a/src/boot/efi/sha256.h b/src/boot/efi/sha256.h index 3a43601e738..464be59c251 100644 --- a/src/boot/efi/sha256.h +++ b/src/boot/efi/sha256.h @@ -1,8 +1,6 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once -#include - #include #include