summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/deps/mruby-io/mrblib/file_constants.rb
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--debian/vendor-h2o/deps/mruby-io/mrblib/file_constants.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/vendor-h2o/deps/mruby-io/mrblib/file_constants.rb b/debian/vendor-h2o/deps/mruby-io/mrblib/file_constants.rb
new file mode 100644
index 0000000..a68ee25
--- /dev/null
+++ b/debian/vendor-h2o/deps/mruby-io/mrblib/file_constants.rb
@@ -0,0 +1,29 @@
+class File
+ module Constants
+ RDONLY = 0
+ WRONLY = 1
+ RDWR = 2
+ NONBLOCK = 4
+ APPEND = 8
+
+ BINARY = 0
+ SYNC = 128
+ NOFOLLOW = 256
+ CREAT = 512
+ TRUNC = 1024
+ EXCL = 2048
+
+ NOCTTY = 131072
+ DSYNC = 4194304
+
+ FNM_SYSCASE = 0
+ FNM_NOESCAPE = 1
+ FNM_PATHNAME = 2
+ FNM_DOTMATCH = 4
+ FNM_CASEFOLD = 8
+ end
+end
+
+class File
+ include File::Constants
+end