Upgrade to 1.46.0
[platform/upstream/nghttp2.git] / third-party / mruby / mrbgems / mruby-io / mrblib / file_constants.rb
1 class File
2   module Constants
3     FNM_SYSCASE  = 0
4     FNM_NOESCAPE = 1
5     FNM_PATHNAME = 2
6     FNM_DOTMATCH = 4
7     FNM_CASEFOLD = 8
8   end
9 end
10
11 class File
12   include File::Constants
13 end