aboutsummaryrefslogtreecommitdiff
path: root/include/mach/sa/fcntl.h
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-06-21 18:33:40 +0000
committerThomas Bushnell <thomas@gnu.org>1999-06-21 18:33:40 +0000
commit3910feff8e7beda85d54cdb011a92574430cbb03 (patch)
tree0a6d1d4de15297f1f33ee530069f08e26265d3af /include/mach/sa/fcntl.h
parent11debf0c05652827d66e4bab1d5936ee3059846d (diff)
downloadgnumach-3910feff8e7beda85d54cdb011a92574430cbb03.tar.gz
gnumach-3910feff8e7beda85d54cdb011a92574430cbb03.tar.bz2
gnumach-3910feff8e7beda85d54cdb011a92574430cbb03.zip
Delete old files from Utah Mach4 that we aren't using.
Diffstat (limited to 'include/mach/sa/fcntl.h')
-rw-r--r--include/mach/sa/fcntl.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/mach/sa/fcntl.h b/include/mach/sa/fcntl.h
deleted file mode 100644
index ac86fe37..00000000
--- a/include/mach/sa/fcntl.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _MACH_SA_FCNTL_H_
-#define _MACH_SA_FCNTL_H_
-
-#include <sys/cdefs.h>
-
-#define O_ACCMODE 0x0003
-#define O_RDONLY 0x0000
-#define O_WRONLY 0x0001
-#define O_RDWR 0x0002
-
-#define O_CREAT 0x0010
-#define O_TRUNC 0x0020
-#define O_APPEND 0x0040
-#define O_EXCL 0x0080
-
-__BEGIN_DECLS
-
-int open(const char *__name, int __mode, ...);
-
-__END_DECLS
-
-#endif /* _MACH_SA_FCNTL_H_ */