Skip to content

Commit

Permalink
Debug by disabling block ksh93#1
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnoKing committed Mar 21, 2021
1 parent eccc91e commit af448ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/libast/sfio/sfcvt.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ int format; /* conversion format */
return SF_INF;
}
#endif
# if __STDC_VERSION__ >= 199901L
# if 0
# if _lib_signbit
if (signbit(f))
# else
Expand All @@ -170,7 +170,7 @@ int format; /* conversion format */
# if _lib_copysign
if (copysign(1.0, (double)f) < 0.0)
# else
if (f < 0.0 || f == 0.0 && neg0ld(f))
if (f < 0.0)
# endif
# endif
# endif
Expand Down

0 comments on commit af448ab

Please sign in to comment.