Files
2013-09-26 17:14:40 +02:00

14 lines
311 B
Plaintext

$NetBSD: patch-aa,v 1.1.1.1 2006/07/12 13:12:57 wiz Exp $
--- lib/JAMA/tnt_math_utils.h.orig 2006-05-10 17:58:50.000000000 +0000
+++ lib/JAMA/tnt_math_utils.h
@@ -30,7 +30,7 @@ Real hypot(const Real &a, const Real &b)
{
if (a== 0)
- return abs(b);
+ return fabs(b);
else
{
Real c = b/a;