:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / direct / rmdir.c
1 #include <windows.h>
2 #include <msvcrt/direct.h>
3
4 int _rmdir( const char *_path )
5 {
6         if (!RemoveDirectoryA(_path))
7                 return -1;
8         return 0;
9 }
10
11 int _wrmdir( const wchar_t *_path )
12 {
13         if (!RemoveDirectoryW(_path))
14                 return -1;
15         return 0;
16 }