2 Copyright © 2003, The AROS Development Team. All rights reserved.
5 POSIX function rmdir().
10 #include <proto/dos.h>
13 /*****************************************************************************
21 const char * pathname
)
24 Deletes an empty directory.
27 pathname - Complete path to the directory.
30 0 on success and -1 on error. In case of an error, errno is set.
43 ******************************************************************************/
45 return remove(pathname
);