[Python-checkins] CVS: python/dist/src/Modules posixmodule.c,2.123,2.124

Guido van Rossum guido@cnri.reston.va.us
Fri, 25 Feb 2000 12:51:02 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
	posixmodule.c 
Log Message:
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.


Index: posixmodule.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.123
retrieving revision 2.124
diff -C2 -r2.123 -r2.124
*** posixmodule.c	2000/01/31 18:41:26	2.123
--- posixmodule.c	2000/02/25 17:51:00	2.124
***************
*** 3786,3792 ****
      {"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},
--- 3786,3789 ----