Skip to content

Commit

Permalink
Added floating point categories to handle the return value from fpcla…
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitcowboy committed Oct 1, 2023
1 parent 6a8f787 commit 1b3fa2a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cfg/std.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@
<define name="_IOFBF" value="0"/>
<define name="_IOLBF" value="1"/>
<define name="_IONBF" value="2"/>
<!-- https://en.cppreference.com/w/cpp/numeric/math/FP_categories -->
<define name="FP_NORMAL" value="1"/>
<define name="FP_SUBNORMAL" value="2"/>
<define name="FP_ZERO" value="3"/>
<define name="FP_INFINITE" value="4"/>
<define name="FP_NAN" value="5"/>
<!-- errno_t is a typedef for int -->
<define name="errno_t" value="int"/>
<!-- void abort(void); -->
Expand Down

0 comments on commit 1b3fa2a

Please sign in to comment.