Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0374771 commit 687ec18Copy full SHA for 687ec18
1 file changed
Objects/longobject.c
@@ -28,7 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
28
29
#include "allobjects.h"
30
#include "longintrepr.h"
31
-#include <math.h>
+#include "mymath.h"
32
#include <assert.h>
33
#include <ctype.h>
34
@@ -102,8 +102,12 @@ newlongobject(ival)
102
/* Create a new long int object from a C double */
103
104
object *
105
+#ifdef MPW
106
+dnewlongobject(double dval)
107
+#else
108
dnewlongobject(dval)
109
double dval;
110
+#endif /* MPW */
111
{
112
longobject *v;
113
double frac;
0 commit comments