mod to remove declarations in math.h
authorceriel <none@none>
Mon, 25 Jul 1988 11:40:57 +0000 (11:40 +0000)
committerceriel <none@none>
Mon, 25 Jul 1988 11:40:57 +0000 (11:40 +0000)
lang/basic/lib/atn.c
lang/basic/lib/exp.c
lang/basic/lib/log.c
lang/basic/lib/sin.c
lang/basic/lib/sqt.c
lang/pc/libpc/atn.c
lang/pc/libpc/exp.c
lang/pc/libpc/log.c
lang/pc/libpc/sin.c
lang/pc/libpc/sqt.c

index 1358e4d..ca1683e 100644 (file)
@@ -7,6 +7,7 @@
 
 /* $Header$ */
 
+#define __NO_DEFS
 #include <math.h>
 
 double
index c3c2de9..4b4a121 100644 (file)
@@ -7,6 +7,7 @@
 
 /* $Header$ */
 
+#define __NO_DEFS
 #include <math.h>
 
 static double
index 86d1b9b..3bc1219 100644 (file)
@@ -7,6 +7,7 @@
 
 /* $Header$ */
 
+#define __NO_DEFS
 #include <math.h>
 
 double
index 8603ea2..32e4a7e 100644 (file)
@@ -7,6 +7,7 @@
 
 /* $Header$ */
 
+#define __NO_DEFS
 #include <math.h>
 
 static double
index 62a3fb3..44b79e6 100644 (file)
@@ -7,6 +7,7 @@
 
 /* $Header$ */
 
+#define __NO_DEFS
 #include <math.h>
 
 #define NITER  5
index 1358e4d..eb09b92 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 /* $Header$ */
-
+#define __NO_DEFS
 #include <math.h>
 
 double
@@ -91,7 +91,7 @@ _atn(x)
        while (x > pr->X) pr++;
        if (pr != prec) {
                x = pr->arctan +
-                       atan(pr->one_o_x - pr->one_o_xsq_p_1/(pr->one_o_x + x));
+                       _atn(pr->one_o_x - pr->one_o_xsq_p_1/(pr->one_o_x + x));
        }
        else {
                double xsq = x*x;
index 3ad52e6..2fea299 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 /* $Header$ */
-
+#define __NO_DEFS
 #include <math.h>
 #include <pc_err.h>
 extern _trp();
index c3db6e9..bde00a2 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 /* $Header$ */
-
+#define __NO_DEFS
 #include <math.h>
 #include <pc_err.h>
 extern _trp();
index ab55c5b..cb8a4e0 100644 (file)
@@ -7,6 +7,7 @@
 
 /* $Header$ */
 
+#define __NO_DEFS
 #include <math.h>
 
 static double
index 39c06cf..7a152d0 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 /* $Header$ */
-
+#define __NO_DEFS
 #include <math.h>
 #include <pc_err.h>
 extern _trp();