changes for MPW

This commit is contained in:
Guido van Rossum 1995-03-04 22:43:47 +00:00
parent 0374771cc7
commit 687ec1892b
1 changed files with 5 additions and 1 deletions

View File

@ -28,7 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "allobjects.h"
#include "longintrepr.h"
#include <math.h>
#include "mymath.h"
#include <assert.h>
#include <ctype.h>
@ -102,8 +102,12 @@ newlongobject(ival)
/* Create a new long int object from a C double */
object *
#ifdef MPW
dnewlongobject(double dval)
#else
dnewlongobject(dval)
double dval;
#endif /* MPW */
{
longobject *v;
double frac;