1999-07-14 00:54:57 +00:00
|
|
|
/* Print floating point number in hexadecimal notation according to
|
1999-10-31 17:37:43 +00:00
|
|
|
ISO C99.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
1999-07-14 00:54:57 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1999-07-14 00:54:57 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1999-07-14 00:54:57 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1999-07-14 00:54:57 +00:00
|
|
|
|
2017-06-02 19:03:40 +00:00
|
|
|
#include <ldbl-128/printf_fphex_macros.h>
|
1999-07-14 00:54:57 +00:00
|
|
|
#define PRINT_FPHEX_LONG_DOUBLE \
|
2017-06-02 19:03:40 +00:00
|
|
|
PRINT_FPHEX (long double, fpnum.ldbl, ieee854_long_double, \
|
|
|
|
IEEE854_LONG_DOUBLE_BIAS)
|
1999-07-14 00:54:57 +00:00
|
|
|
|
2005-12-15 21:13:14 +00:00
|
|
|
#include <stdio-common/printf_fphex.c>
|