Browse Source

Merge 23e35ab2ff into 041d4870d3

pull/1/merge
Thomas PABST 5 years ago
committed by GitHub
parent
commit
b6ddd09f3a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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