From: Fred Drake Date: Sun, 9 Jul 2000 05:31:24 +0000 (+0000) Subject: Remove legacy use of __SC__; no longer needed now that ANSI source is X-Git-Tag: v2.0b1~976 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f0968c5f8f1216538f3a47db0338ddaa0feae71;p=thirdparty%2FPython%2Fcpython.git Remove legacy use of __SC__; no longer needed now that ANSI source is the standard for Python implementation. --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 0e837f711bcd..7a444ad50980 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -112,12 +112,7 @@ fill_free_list(void) } PyObject * -#ifdef __SC__ PyFloat_FromDouble(double fval) -#else -PyFloat_FromDouble(fval) - double fval; -#endif { register PyFloatObject *op; if (free_list == NULL) {