gh-67341: fix a typo in Include/fileutils.h (#136049)

`IO_REPARSE_TAG_SYMLINK` is mapped to `S_IFLNK` in `fileutils.c`, not in `posixmodule.c`
This commit is contained in:
Lee Dogeon
2025-07-14 17:02:05 +09:00
committed by GitHub
parent b74fb8e220
commit cd3e7ac89b

View File

@@ -16,7 +16,7 @@
# define S_IFMT 0170000
#endif
#ifndef S_IFLNK
// Windows doesn't define S_IFLNK, but posixmodule.c maps
// Windows doesn't define S_IFLNK, but fileutils.c maps
// IO_REPARSE_TAG_SYMLINK to S_IFLNK.
# define S_IFLNK 0120000
#endif