summaryrefslogtreecommitdiff
path: root/apps/wince/sword/include/fcntl.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wince/sword/include/fcntl.h')
-rw-r--r--apps/wince/sword/include/fcntl.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/wince/sword/include/fcntl.h b/apps/wince/sword/include/fcntl.h
deleted file mode 100644
index 163797a..0000000
--- a/apps/wince/sword/include/fcntl.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef FCNTL_H
-#define FCNTL_H
-
-
-#define O_RDONLY 0x0000 /* open for reading only */
-#define O_WRONLY 0x0001 /* open for writing only */
-#define O_RDWR 0x0002 /* open for reading and writing */
-#define O_APPEND 0x0008 /* writes done at eof */
-
-#define O_CREAT 0x0100 /* create and open file */
-#define O_TRUNC 0x0200 /* open and truncate */
-//not implemented for CE #define O_EXCL 0x0400 /* open only if file doesn't already exist */
-
-/* O_TEXT files have <cr><lf> sequences translated to <lf> on read()'s,
-** and <lf> sequences translated to <cr><lf> on write()'s
-*/
-
-#define O_TEXT 0x4000 /* file mode is text (translated) */
-#define O_BINARY 0x8000 /* file mode is binary (untranslated) */
-
-
-
-#endif