diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-19 15:27:24 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-19 15:27:24 +0000 |
commit | 5894a82fd11923d1476b7a2bef12f1625f799488 (patch) | |
tree | 2aa0f2605afa7badd77c34ad3c898935da0698bb /Modules/posixmodule.c | |
parent | 06a182c9df90ef266f7e53548a00d0a9f8982725 (diff) | |
download | cpython-5894a82fd11923d1476b7a2bef12f1625f799488.tar.gz |
Merged revisions 88111 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88111 | antoine.pitrou | 2011-01-19 16:21:35 +0100 (mer., 19 janv. 2011) | 4 lines
Issue #10898: Allow compiling the posix module when the C library defines
a symbol named FSTAT.
........
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8066d457d1..48762c1c07 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -340,6 +340,8 @@ extern int lstat(const char *, struct stat *); /* 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 |