gint/src/fs/unlink.c
2025-04-12 08:47:17 +02:00

11 lines
214 B
C

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