2 Copyright © 2003-2012, The AROS Development Team. All rights reserved.
5 POSIX function rmdir().
10 /*****************************************************************************
18 const char * pathname
)
21 Deletes an empty directory.
24 pathname - Complete path to the directory.
27 0 on success and -1 on error. In case of an error, errno is set.
40 ******************************************************************************/
42 /* FIXME: Shouldn't we check if pathname is actually a directory ? */
43 return remove(pathname
);