Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,12 @@
# if defined(__CYGWIN__)
# define USE_XATTRS
# include <cygwin/limits.h> // Needed for XATTR_SIZE_MAX and XATTR_LIST_MAX.
# ifndef XATTR_SIZE_MAX
# define XATTR_SIZE_MAX 65536
# endif
# ifndef XATTR_LIST_MAX
# define XATTR_LIST_MAX 65536
# endif
# endif
#endif
#ifdef USE_XATTRS
Expand Down
Loading