From 6ea02e930704b18bf0f4d129147c63009c8c5e84 Mon Sep 17 00:00:00 2001 From: x Date: Wed, 7 Jun 2023 14:43:44 +0200 Subject: [PATCH] TurboPFor: Bit bituil --- lib/include_/bitutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/include_/bitutil.h b/lib/include_/bitutil.h index 7308456..53990d3 100644 --- a/lib/include_/bitutil.h +++ b/lib/include_/bitutil.h @@ -145,7 +145,7 @@ void bitzdec(unsigned char *in, unsigned n, unsigned esize); //------- Lossy floating point transform: pad the trailing mantissa bits with zeros according to the error e (ex. e=0.00001) // must include float.h to use _Float16 (see icapp.c) - #ifdef FLT16_MAX + #if defined(FLT16_MAX) _Float16 _fprazor16(_Float16 d, float e, int lg2e); void fprazor16(_Float16 *in, unsigned n, _Float16 *out, float e); #endif