diff options
author | Guido van Rossum <guido@python.org> | 2000-02-25 17:51:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-25 17:51:00 (GMT) |
commit | 4985e409397f805b54e35658de1df55cd0343284 (patch) | |
tree | 22192f8f4262f92923439300f5b3f79724253dae /Modules | |
parent | e6674e6fc6c3472ae9e53fb74163fa9a24401d53 (diff) | |
download | cpython-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')
-rw-r--r-- | Modules/posixmodule.c | 3 |
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 |