mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-06-19 04:16:37 +02:00
8 lines
158 B
C
8 lines
158 B
C
#include <unistd.h>
|
|
#include "fugue/fugue.h"
|
|
|
|
int rmdir(char const *path)
|
|
{
|
|
/* Standard rmdir() is the Fugue filesystem only */
|
|
return fugue_rmdir(path);
|
|
}
|