From da13f89fee60ea0ec51403457272a2c47592877c Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 5 Jul 2000 12:22:14 +0000 Subject: [PATCH] Remove definition of _GNU_SOURCE, since Python.h now does it for us --- Modules/mmapmodule.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 8cd993e40f8..7627435dad5 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