aboutsummaryrefslogtreecommitdiffstats
path: root/matrix.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-16 22:02:00 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-16 22:02:00 +0000
commit3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9 (patch)
tree43a618cb2507489be74cf3b52a18d4be5110fe58 /matrix.c
parenttgetstr("Km", &pt) cannot be used to detect is_xterm (diff)
downloadw3m-3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9.tar.gz
w3m-3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9.zip
follow autoconf conventions, #include cleanups
Diffstat (limited to '')
-rw-r--r--matrix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/matrix.c b/matrix.c
index 21124a6..4f3dae1 100644
--- a/matrix.c
+++ b/matrix.c
@@ -1,7 +1,7 @@
/*
* matrix.h, matrix.c: Liner equation solver using LU decomposition.
- * $Id: matrix.c,v 1.3 2001/11/15 00:32:13 a-ito Exp $
+ * $Id: matrix.c,v 1.4 2001/11/16 22:02:00 ukai Exp $
*
* by K.Okabe Aug. 1999
*
@@ -50,9 +50,9 @@
#define SWAPD(a,b) { double tmp = a; a = b; b = tmp; }
#define SWAPI(a,b) { int tmp = a; a = b; b = tmp; }
-#ifndef NO_FLOAT_H
+#ifdef HAVE_FLOAT_H
#include <float.h>
-#endif /* not NO_FLOAT_H */
+#endif /* not HAVE_FLOAT_H */
#if defined(DBL_MAX)
static double Tiny = 10.0 / DBL_MAX;
#elif defined(FLT_MAX)