5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rmdir.html}
9 Portability problems fixed by Gnulib:
12 This function is declared in different header files (namely, @code{<io.h>} or
13 @code{<direct.h>}) on some platforms:
16 This function mistakenly removes a directory with
17 @code{rmdir("dir/./")} on some platforms:
20 This function fails with @code{EINVAL} instead of the expected
21 @code{ENOTDIR} for @code{rmdir("file/")} on some platforms:
25 Portability problems not fixed by Gnulib:
28 When @code{rmdir} fails because the specified directory is not empty, the
29 @code{errno} value is system dependent.
31 POSIX requires that @code{rmdir("link-to-empty/")} remove @file{empty}
32 and leave @file{link-to-empty} as a dangling symlink. This is
33 counter-intuitive, so some systems fail with @code{ENOTDIR} instead: