aboutsummaryrefslogtreecommitdiff
path: root/stand/libsa/stand.h
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libsa/stand.h')
-rw-r--r--stand/libsa/stand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/stand/libsa/stand.h b/stand/libsa/stand.h
index 614eaa65f67f..677aff5a1fdb 100644
--- a/stand/libsa/stand.h
+++ b/stand/libsa/stand.h
@@ -286,6 +286,9 @@ extern int open(const char *, int);
#define O_RDONLY 0x0
#define O_WRONLY 0x1
#define O_RDWR 0x2
+/* NOT IMPLEMENTED */
+#define O_CREAT 0x0200 /* create if nonexistent */
+#define O_TRUNC 0x0400 /* truncate to zero length */
extern int close(int);
extern void closeall(void);
extern ssize_t read(int, void *, size_t);