commit | e47e093f7009ca758f044c52178071b68e48bf2a | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Jan 19 15:21:35 2011 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Jan 19 15:21:35 2011 +0000 |
tree | 2067d6091c85f30a54f6cd49f1279498c87c2089 | |
parent | be9994e0d1afe4c2a1d28041ca0dce50ef9d786d [diff] [blame] |
Issue #10898: Allow compiling the posix module when the C library defines a symbol named FSTAT.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 3b9fd05..39beaba 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c
@@ -326,6 +326,8 @@ /* choose the appropriate stat and fstat functions and return structs */ #undef STAT +#undef FSTAT +#undef STRUCT_STAT #if defined(MS_WIN64) || defined(MS_WINDOWS) # define STAT win32_stat # define FSTAT win32_fstat