Issue #13772: Fix a compiler warning on Windows
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 28e6f81..9b2f95b 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -6772,7 +6772,7 @@
 
 }
 
-int _is_absA(char *path) {
+int _is_absA(const char *path) {
     /* Is this path absolute? */
 
     return path[0] == '\\' || path[0] == '/' || path[1] == ':';