]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove legacy use of __SC__; no longer needed now that ANSI source is
authorFred Drake <fdrake@acm.org>
Sun, 9 Jul 2000 05:31:24 +0000 (05:31 +0000)
committerFred Drake <fdrake@acm.org>
Sun, 9 Jul 2000 05:31:24 +0000 (05:31 +0000)
the standard for Python implementation.

Objects/floatobject.c

index 0e837f711bcddf3ed68db351a4457be4172df309..7a444ad50980a97860a703eda64f5d36e0d6a7fd 100644 (file)
@@ -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) {