Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.34 KB | None | 0 0
  1. diff --git a/src/system/libroot/posix/glibc/stdio-common/printf_fphex.c b/src/system/libroot/posix/glibc/stdio-common/printf_fphex.c
  2. index f6dc2e7515..b68c4e85fd 100644
  3. --- a/src/system/libroot/posix/glibc/stdio-common/printf_fphex.c
  4. +++ b/src/system/libroot/posix/glibc/stdio-common/printf_fphex.c
  5. @@ -253,7 +253,7 @@ __printf_fphex (FILE *fp,
  6.        fpnum.ldbl.d = *(const long double *) args[0];
  7.  
  8.        /* Check for special values: not a number or infinity.  */
  9. -      if (__isnanl (fpnum.ldbl.d))
  10. +      if (isnanl (fpnum.ldbl.d))
  11.         {
  12.           if (isupper (info->spec))
  13.             {
  14. @@ -269,7 +269,7 @@ __printf_fphex (FILE *fp,
  15.         }
  16.        else
  17.         {
  18. -         if (__isinfl (fpnum.ldbl.d))
  19. +         if (isinfl (fpnum.ldbl.d))
  20.             {
  21.               if (isupper (info->spec))
  22.                 {
  23. @@ -292,7 +292,7 @@ __printf_fphex (FILE *fp,
  24.        fpnum.dbl.d = *(const double *) args[0];
  25.  
  26.        /* Check for special values: not a number or infinity.  */
  27. -      if (__isnan (fpnum.dbl.d))
  28. +      if (isnan (fpnum.dbl.d))
  29.         {
  30.           if (isupper (info->spec))
  31.             {
  32. @@ -308,7 +308,7 @@ __printf_fphex (FILE *fp,
  33.         }
  34.        else
  35.         {
  36. -         if (__isinf (fpnum.dbl.d))
  37. +         if (isinf (fpnum.dbl.d))
  38.             {
  39.               if (isupper (info->spec))
  40.                 {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement