diff options
author | Skip Montanaro <skip@pobox.com> | 2004-01-17 14:19:44 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-01-17 14:19:44 (GMT) |
commit | ce59c04127cb82127e247f5e986b07cbb6c39c61 (patch) | |
tree | 75b910d56a7b8f039e99c2cf6156c061124ef1e8 /Modules/mmapmodule.c | |
parent | 09de7567269af82164ec7dd0c5edf3ec6d1b7502 (diff) | |
download | cpython-ce59c04127cb82127e247f5e986b07cbb6c39c61.zip cpython-ce59c04127cb82127e247f5e986b07cbb6c39c61.tar.gz cpython-ce59c04127cb82127e247f5e986b07cbb6c39c61.tar.bz2 |
Remove support for SunOS 4.
Remove BAD_EXEC_PROTOYPE (leftover from IRIX 4 demolition).
Diffstat (limited to 'Modules/mmapmodule.c')
-rw-r--r-- | Modules/mmapmodule.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index a61a37a..6cb4717 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -39,11 +39,6 @@ my_getpagesize(void) #include <sys/mman.h> #include <sys/stat.h> -#ifndef MS_SYNC -/* This is missing e.g. on SunOS 4.1.4 */ -#define MS_SYNC 0 -#endif - #if defined(HAVE_SYSCONF) && defined(_SC_PAGESIZE) static int my_getpagesize(void) |