This website works better with JavaScript.
Home
Explore
Help
Sign In
Patrick
/
Nife_v0
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix compilation issue due on debian 9 stretch
pull/1/head
Thomas Pabst
6 years ago
parent
406e57da00
commit
23e35ab2ff
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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)
static double inv(double a)
{
{
double v;
double v;
if (a==0.0) v=HUGE;
if (a==0.0) v=HUGE
_VAL
;
else v = (double)1.0/a;
else v = (double)1.0/a;
return v;
return v;
}
}
Write
Preview
Loading…
Cancel
Save