]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Made posix_error back static as it should be.
authorGuido van Rossum <guido@python.org>
Sun, 21 Oct 1990 13:12:47 +0000 (13:12 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 21 Oct 1990 13:12:47 +0000 (13:12 +0000)
Modules/posixmodule.c

index b7b2346e18fb2656c019ef4856a81d6d7124fa02..b4a1ff6efcfe76989eb4d191638b331dd75b6208 100644 (file)
@@ -72,7 +72,7 @@ static object *PosixError; /* Exception posix.error */
 
 /* Set a POSIX-specific error from errno, and return NULL */
 
-extern object *
+static object *
 posix_error()
 {
        return err_errno(PosixError);