From: Guido van Rossum Date: Sun, 21 Oct 1990 13:12:47 +0000 (+0000) Subject: Made posix_error back static as it should be. X-Git-Tag: v0.9.8~1166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a1581cecaece4375ff6fd8643a21a6fc8ab5a49;p=thirdparty%2FPython%2Fcpython.git Made posix_error back static as it should be. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index b7b2346e18fb..b4a1ff6efcfe 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -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);