From 619c9bad41d041bab2ac6ba3933d526b48ceee2a Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 12 Jan 2022 12:35:16 +0100 Subject: Revert "crypto/bio: fix build on UEFI" This reverts commit 328bf5adf9e23da523d4195db309083aa02403c4. Turned out it isn't that simple, the fix is incomplete. So revert and try again with another approach. Signed-off-by: Gerd Hoffmann Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/17547) --- crypto/bio/bio_print.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'crypto') diff --git a/crypto/bio/bio_print.c b/crypto/bio/bio_print.c index 60b28c61ff..1ea9a1a3c6 100644 --- a/crypto/bio/bio_print.c +++ b/crypto/bio/bio_print.c @@ -13,7 +13,6 @@ #include "crypto/ctype.h" #include "internal/numbers.h" #include -#include /* * Copyright Patrick Powell 1995 @@ -513,11 +512,7 @@ fmtint(char **sbuffer, return 1; } -#ifdef OPENSSL_SYS_UEFI -static LDOUBLE EFIAPI abs_val(LDOUBLE value) -#else static LDOUBLE abs_val(LDOUBLE value) -#endif { LDOUBLE result = value; if (value < 0) @@ -525,11 +520,7 @@ static LDOUBLE abs_val(LDOUBLE value) return result; } -#ifdef OPENSSL_SYS_UEFI -static LDOUBLE EFIAPI pow_10(int in_exp) -#else static LDOUBLE pow_10(int in_exp) -#endif { LDOUBLE result = 1; while (in_exp) { -- cgit v1.2.3