Browse Source

Fix compilation issue due on debian 9 stretch

pull/1/head
Thomas Pabst 5 years ago
parent
commit
23e35ab2ff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/libmath.c

+ 1
- 1
src/libmath.c View File

@@ -25,7 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
static double inv(double a)
{
double v;
if (a==0.0) v=HUGE;
if (a==0.0) v=HUGE_VAL;
else v = (double)1.0/a;
return v;
}


Loading…
Cancel
Save