diff options
author | Guido van Rossum <guido@python.org> | 2001-04-14 17:55:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-04-14 17:55:09 (GMT) |
commit | f68d8e52e7ce833d123de034a4f123ec710a639f (patch) | |
tree | fceec6ba2862506e6839a6b34579b635052360e9 /Modules/posixmodule.c | |
parent | f85af612f8c109f52333ee2d106b0848bf6ab372 (diff) | |
download | cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.zip cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.tar.gz cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.tar.bz2 |
Make some private symbols static.
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 5575b9f..cb8a1d1 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3836,7 +3836,7 @@ static char posix_strerror__doc__[] = "strerror(code) -> string\n\ Translate an error code to a message string."; -PyObject * +static PyObject * posix_strerror(PyObject *self, PyObject *args) { int code; |