From ff871511af79fd8fb7a09d3ed42220830e6ddcd6 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 21 Jul 2017 15:21:13 +0200 Subject: Windows: reduce size of MBR bootloader by removing unused functions in each build type. --- src/Common/Endian.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/Common/Endian.c') diff --git a/src/Common/Endian.c b/src/Common/Endian.c index 46f6e1bd..cea24d09 100644 --- a/src/Common/Endian.c +++ b/src/Common/Endian.c @@ -43,17 +43,3 @@ uint64 MirrorBytes64 (uint64 x) } #endif -void -LongReverse (unsigned __int32 *buffer, unsigned byteCount) -{ - unsigned __int32 value; - - byteCount /= sizeof (unsigned __int32); - while (byteCount--) - { - value = *buffer; - value = ((value & 0xFF00FF00L) >> 8) | \ - ((value & 0x00FF00FFL) << 8); - *buffer++ = (value << 16) | (value >> 16); - } -} -- cgit v1.2.3