mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-05-18 23:39:17 +02:00
11 lines
214 B
C
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;
|
|
}
|