[Python-checkins] CVS: python/dist/src/Modules mmapmodule.c,2.16,2.17

A.M. Kuchling python-dev@python.org
Wed, 5 Jul 2000 05:22:17 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv31179

Modified Files:
	mmapmodule.c 
Log Message:
Remove definition of _GNU_SOURCE, since Python.h now does it for us


Index: mmapmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/mmapmodule.c,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** mmapmodule.c	2000/07/01 00:51:51	2.16
--- mmapmodule.c	2000/07/05 12:22:14	2.17
***************
*** 17,25 ****
  */
  
- #ifdef __linux__
- #define _GNU_SOURCE  /* So we can get MREMAP_MAYMOVE defined when
- 		        sys/mman.h is included */
- #endif
- 
  #include <Python.h>
  
--- 17,20 ----