- Remove a patch file that didn't do anything.

Pointyhat:	stephen (me)
This commit is contained in:
Stephen Montgomery-Smith 2012-02-01 23:34:06 +00:00
parent eef4583e76
commit 19a1734fbb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=290264

View file

@ -1,41 +0,0 @@
--- devel/sage-main/sage/symbolic/pynac_cc.h-orig 2012-01-21 22:54:39.000000000 +0000
+++ devel/sage-main/sage/symbolic/pynac_cc.h 2012-01-21 22:55:10.000000000 +0000
@@ -1,37 +1,21 @@
-#include <math.h>
+#include <cmath>
inline long double sage_logl(long double x)
{
-#if defined(__CYGWIN__)
return log(x);
-#else
- return logl(x);
-#endif
}
inline long double sage_sqrtl(long double x)
{
-#if defined(__CYGWIN__)
return sqrt(x);
-#else
- return sqrtl(x);
-#endif
}
inline long double sage_tgammal(long double x)
{
-#if defined(__CYGWIN__)
return tgamma(x);
-#else
- return tgammal(x);
-#endif
}
inline long double sage_lgammal(long double x)
{
-#if defined(__CYGWIN__)
return lgamma(x);
-#else
- return lgammal(x);
-#endif
}