summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-03-18 15:35:58 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-03-18 15:35:58 (GMT)
commit10ed0f50a989f83395b7af67249d44d2419e5d3f (patch)
tree40223244ca701e2eb978455d710ba6c6f585fa65 /Modules/posixmodule.c
parent50a24d8bfdb831f6cb79ad717af6e5c17230763f (diff)
downloadcpython-10ed0f50a989f83395b7af67249d44d2419e5d3f.zip
cpython-10ed0f50a989f83395b7af67249d44d2419e5d3f.tar.gz
cpython-10ed0f50a989f83395b7af67249d44d2419e5d3f.tar.bz2
Remove all traces of HAVE_STRERROR.
The removal of strerror.c led to the function check being removed from configure.in.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index fab44d6..f73b73e 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -6710,7 +6710,6 @@ posix_unsetenv(PyObject *self, PyObject *args)
}
#endif /* unsetenv */
-#ifdef HAVE_STRERROR
PyDoc_STRVAR(posix_strerror__doc__,
"strerror(code) -> string\n\n\
Translate an error code to a message string.");
@@ -6730,7 +6729,6 @@ posix_strerror(PyObject *self, PyObject *args)
}
return PyString_FromString(message);
}
-#endif /* strerror */
#ifdef HAVE_SYS_WAIT_H
@@ -8510,9 +8508,7 @@ static PyMethodDef posix_methods[] = {
#ifdef HAVE_UNSETENV
{"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
#endif
-#ifdef HAVE_STRERROR
{"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
-#endif
#ifdef HAVE_FCHDIR
{"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
#endif