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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/uisimulator/x11/file.h b/uisimulator/x11/file.h
index 63ccfe108c..49c49116fb 100644
--- a/uisimulator/x11/file.h
+++ b/uisimulator/x11/file.h
@@ -21,12 +21,14 @@
21#include <sys/types.h> 21#include <sys/types.h>
22 22
23int x11_open(char *name, int opts); 23int x11_open(char *name, int opts);
24int x11_close(int fd);
24int x11_creat(char *name, int mode); 25int x11_creat(char *name, int mode);
25int x11_remove(char *name); 26int x11_remove(char *name);
26int x11_rename(char *oldpath, char *newpath); 27int x11_rename(char *oldpath, char *newpath);
27 28
28#define open(x,y) x11_open(x,y) 29#define open(x,y) x11_open(x,y)
29#define creat(x,y) x11_open(x,y) 30#define close(x) x11_close(x)
31#define creat(x,y) x11_creat(x,y)
30#define remove(x) x11_remove(x) 32#define remove(x) x11_remove(x)
31#define rename(x,y) x11_rename(x,y) 33#define rename(x,y) x11_rename(x,y)
32 34