]> git.cworth.org Git - tar/blobdiff - gnu/mkdir.c
Merge branch 'upstream' into dfsg-orig
[tar] / gnu / mkdir.c
index c782a732bf2269b10884503df68a415b6e0becdd..d2d618e0d8658a7db69865083c870d20cff4df4d 100644 (file)
@@ -38,7 +38,8 @@
 
 /* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
    Additionally, it declares _mkdir (and depending on compile flags, an
-   alias mkdir), only in the nonstandard io.h.  */
+   alias mkdir), only in the nonstandard includes <direct.h> and <io.h>,
+   which are included in the <sys/stat.h> override.  */
 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
 # define mkdir(name,mode) _mkdir (name)
 # define maybe_unused _GL_UNUSED