From 4682deeb62247d34de87f8e777f99e2d337fd377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 20 Oct 2024 15:21:43 +0200 Subject: New upstream version 1.3 --- lib/printf-frexp.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/printf-frexp.h') diff --git a/lib/printf-frexp.h b/lib/printf-frexp.h index 4970c137..8467f98b 100644 --- a/lib/printf-frexp.h +++ b/lib/printf-frexp.h @@ -14,6 +14,11 @@ You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ +#ifdef __cplusplus +extern "C" { +#endif + + /* Write a finite, positive number x as x = mantissa * 2^exp where exp >= DBL_MIN_EXP - 1, @@ -21,3 +26,8 @@ if x is not a denormalized number then mantissa >= 1.0. Store exp in *EXPPTR and return mantissa. */ extern double printf_frexp (double x, int *expptr); + + +#ifdef __cplusplus +} +#endif -- cgit v1.2.3