diff options
author | Guido van Rossum <guido@python.org> | 1990-10-21 13:12:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-21 13:12:47 (GMT) |
commit | 9a1581cecaece4375ff6fd8643a21a6fc8ab5a49 (patch) | |
tree | b38613ee01fd2aca24942cd61ad9aa09ef98680e /Modules/posixmodule.c | |
parent | 536d5d3523926c22c3a7f838d2148727c4f99f7d (diff) | |
download | cpython-9a1581cecaece4375ff6fd8643a21a6fc8ab5a49.zip cpython-9a1581cecaece4375ff6fd8643a21a6fc8ab5a49.tar.gz cpython-9a1581cecaece4375ff6fd8643a21a6fc8ab5a49.tar.bz2 |
Made posix_error back static as it should be.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index b7b2346..b4a1ff6 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); |