From 674ddaf5bee93cbbab17e76857160b00080e3001 Mon Sep 17 00:00:00 2001 From: nsz Date: Sun, 11 Nov 2012 20:06:02 +0100 Subject: [PATCH] fix formula for logb in n1570.html --- n1570.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/n1570.html b/n1570.html index a756b02..b2639fc 100644 --- a/n1570.html +++ b/n1570.html @@ -13131,7 +13131,7 @@ unsigned long long int format. If x is subnormal it is treated as though it were normalized; thus, for positive finite x,
-       1 <= x x FLT_RADIX-logb(x) < FLT_RADIX
+       1 <= x FLT_RADIX-logb(x) < FLT_RADIX
 
A domain error or pole error may occur if the argument is zero.

Returns -- 2.20.1