Skip to content

Commit

Permalink
Use isfinite on nonwindows
Browse files Browse the repository at this point in the history
  • Loading branch information
lenzo-ka committed Jul 9, 2024
1 parent 532034b commit 811dfbf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libs/libmodinv/gauden.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ static float32 min_var = 1e38; /* just a big num */

#if defined (_WIN32)
#define finite(x) _finite(x)
#else
#define finite(x) isfinite(x)
#endif


Expand Down

0 comments on commit 811dfbf

Please sign in to comment.