gint/src/fs/rename.c

9 lines
196 B
C
Raw Normal View History

2022-08-22 15:25:14 +02:00
#include <stdio.h>
#include "fugue/fugue.h"
int rename(char const *oldpath, char const *newpath)
{
/* Standard rename() is the Fugue filesystem only */
return fugue_rename(oldpath, newpath);
}