gint/src/fs/unlink.c

9 lines
161 B
C

#include <unistd.h>
#include "fugue/fugue.h"
int unlink(char const *path)
{
/* Standard unlink() is the Fugue filesystem only */
return fugue_unlink(path);
}