From: Andrew M. Kuchling Date: Wed, 5 Jul 2000 12:22:14 +0000 (+0000) Subject: Remove definition of _GNU_SOURCE, since Python.h now does it for us X-Git-Tag: v2.0b1~1072 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da13f89fee60ea0ec51403457272a2c47592877c;p=thirdparty%2FPython%2Fcpython.git Remove definition of _GNU_SOURCE, since Python.h now does it for us --- diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 8cd993e40f8a..7627435dad51 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -16,11 +16,6 @@ / ftp://squirl.nightmare.com/pub/python/python-ext. */ -#ifdef __linux__ -#define _GNU_SOURCE /* So we can get MREMAP_MAYMOVE defined when - sys/mman.h is included */ -#endif - #include #ifndef MS_WIN32