there's an assembly language version for the HP's
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 18 May 1990 09:59:19 +0000 (01:59 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 18 May 1990 09:59:19 +0000 (01:59 -0800)
SCCS-vsn: lib/libm/common_source/pow.c 5.5

usr/src/lib/libm/common_source/pow.c

index 863ba94..96448ce 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pow.c      5.4 (Berkeley) %G%";
+static char sccsid[] = "@(#)pow.c      5.5 (Berkeley) %G%";
 #endif /* not lint */
 
 /* POW(X,Y)  
 #endif /* not lint */
 
 /* POW(X,Y)  
@@ -159,6 +159,7 @@ double x,y;
        }
 }
 
        }
 }
 
+#ifndef mc68881
 /* pow_p(x,y) return x**y for x with sign=1 and finite y */
 static double pow_p(x,y)       
 double x,y;
 /* pow_p(x,y) return x**y for x with sign=1 and finite y */
 static double pow_p(x,y)       
 double x,y;
@@ -235,3 +236,4 @@ double x,y;
                        return(scalb(one, 5000)); 
 
 }
                        return(scalb(one, 5000)); 
 
 }
+#endif /* mc68881 */