summaryrefslogtreecommitdiff
path: root/uisimulator/x11/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/file.h')
-rw-r--r--uisimulator/x11/file.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/uisimulator/x11/file.h b/uisimulator/x11/file.h
index 134019148c..63ccfe108c 100644
--- a/uisimulator/x11/file.h
+++ b/uisimulator/x11/file.h
@@ -23,10 +23,12 @@
23int x11_open(char *name, int opts); 23int x11_open(char *name, int opts);
24int x11_creat(char *name, int mode); 24int x11_creat(char *name, int mode);
25int x11_remove(char *name); 25int x11_remove(char *name);
26int x11_rename(char *oldpath, char *newpath);
26 27
27#define open(x,y) x11_open(x,y) 28#define open(x,y) x11_open(x,y)
28#define creat(x,y) x11_open(x,y) 29#define creat(x,y) x11_open(x,y)
29#define remove(x) x11_remove(x) 30#define remove(x) x11_remove(x)
31#define rename(x,y) x11_rename(x,y)
30 32
31#include "../../firmware/common/file.h" 33#include "../../firmware/common/file.h"
32 34