glibc/stdio-common: Use public functions vs private
Change-Id: Ide788b0edb15852e6315b0d5e9208cb3555cf4db Reviewed-on: https://review.haiku-os.org/c/haiku/+/2125 Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
committed by
Adrien Destugues
parent
1808b553a2
commit
614858a9a0
@@ -253,7 +253,7 @@ __printf_fphex (FILE *fp,
|
||||
fpnum.ldbl.d = *(const long double *) args[0];
|
||||
|
||||
/* Check for special values: not a number or infinity. */
|
||||
if (__isnanl (fpnum.ldbl.d))
|
||||
if (isnanl (fpnum.ldbl.d))
|
||||
{
|
||||
if (isupper (info->spec))
|
||||
{
|
||||
@@ -269,7 +269,7 @@ __printf_fphex (FILE *fp,
|
||||
}
|
||||
else
|
||||
{
|
||||
if (__isinfl (fpnum.ldbl.d))
|
||||
if (isinfl (fpnum.ldbl.d))
|
||||
{
|
||||
if (isupper (info->spec))
|
||||
{
|
||||
@@ -292,7 +292,7 @@ __printf_fphex (FILE *fp,
|
||||
fpnum.dbl.d = *(const double *) args[0];
|
||||
|
||||
/* Check for special values: not a number or infinity. */
|
||||
if (__isnan (fpnum.dbl.d))
|
||||
if (isnan (fpnum.dbl.d))
|
||||
{
|
||||
if (isupper (info->spec))
|
||||
{
|
||||
@@ -308,7 +308,7 @@ __printf_fphex (FILE *fp,
|
||||
}
|
||||
else
|
||||
{
|
||||
if (__isinf (fpnum.dbl.d))
|
||||
if (isinf (fpnum.dbl.d))
|
||||
{
|
||||
if (isupper (info->spec))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user