From: Neal Norwitz Date: Thu, 16 Feb 2006 08:08:54 +0000 (+0000) Subject: Update comment and make accurate. X-Git-Tag: v2.5a0~662 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3eaf2b50441a3c6eac87b6dcd4f602de825de64d;p=thirdparty%2FPython%2Fcpython.git Update comment and make accurate. --- diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 7a68de4ccab1..ef6d9f8be641 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -54,7 +54,7 @@ my_getpagesize(void) #include #include -/* maybe define MAP_ANON in terms of MAP_ANONYMOUS */ +/* Prefer MAP_ANONYMOUS since MAP_ANON is deprecated according to man page. */ #if !defined(MAP_ANONYMOUS) && defined(MAP_ANON) # define MAP_ANONYMOUS MAP_ANON #endif