summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-02-25 17:51:00 (GMT)
committerGuido van Rossum <guido@python.org>2000-02-25 17:51:00 (GMT)
commit4985e409397f805b54e35658de1df55cd0343284 (patch)
tree22192f8f4262f92923439300f5b3f79724253dae /Modules/posixmodule.c
parente6674e6fc6c3472ae9e53fb74163fa9a24401d53 (diff)
downloadcpython-4985e409397f805b54e35658de1df55cd0343284.zip
cpython-4985e409397f805b54e35658de1df55cd0343284.tar.gz
cpython-4985e409397f805b54e35658de1df55cd0343284.tar.bz2
Delete references to _SC_AIO_LIST_MAX; it appears that that symbol was
just a typo in some Linux header; the real symbol is _SC_AIO_LISTIO_MAX.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 20170d6..77c0ba1 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -3785,9 +3785,6 @@ static struct constdef posix_constants_sysconf[] = {
#ifdef _SC_AIO_LISTIO_MAX
{"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
#endif
-#ifdef _SC_AIO_LIST_MAX
- {"SC_AIO_LIST_MAX", _SC_AIO_LIST_MAX},
-#endif
#ifdef _SC_AIO_MAX
{"SC_AIO_MAX", _SC_AIO_MAX},
#endif