]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libf2c/libF77/r_lg10.c
Imported gcc-4.4.3
[msp430-gcc.git] / libf2c / libF77 / r_lg10.c
diff --git a/libf2c/libF77/r_lg10.c b/libf2c/libF77/r_lg10.c
deleted file mode 100644 (file)
index 51f8420..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "f2c.h"
-
-#define log10e 0.43429448190325182765
-
-#ifdef KR_headers
-double log();
-double r_lg10(x) real *x;
-#else
-#undef abs
-#include <math.h>
-double r_lg10(real *x)
-#endif
-{
-return( log10e * log(*x) );
-}