Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Patrick
/
Nife_v0
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Fix compilation issue due on debian 9 stretch
pull/1/head
Thomas Pabst
hace 6 años
padre
406e57da00
commit
23e35ab2ff
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
src/libmath.c
+ 1
- 1
src/libmath.c
Ver fichero
@@ -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;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar