guard the private header
[reactos.git] / reactos / lib / crtdll / old cruft / direct / rmdir.c
1 #include <precomp.h>
2 #include <msvcrt/direct.h>
3
4
5 /*
6 * @implemented
7 */
8 int _rmdir(const char* _path)
9 {
10 if (!RemoveDirectoryA(_path))
11 return -1;
12 return 0;
13 }