From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/missing/file.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 jni/ruby/missing/file.h (limited to 'jni/ruby/missing/file.h') diff --git a/jni/ruby/missing/file.h b/jni/ruby/missing/file.h new file mode 100644 index 0000000..241d716 --- /dev/null +++ b/jni/ruby/missing/file.h @@ -0,0 +1,22 @@ +/* This is file FILE.H */ + +#ifndef _FILE_H_ +#define _FILE_H_ + +#include + +#ifndef L_SET +# define L_SET 0 /* seek from beginning. */ +# define L_CURR 1 /* seek from current position. */ +# define L_INCR 1 /* ditto. */ +# define L_XTND 2 /* seek from end. */ +#endif + +#ifndef R_OK +# define R_OK 4 /* test whether readable. */ +# define W_OK 2 /* test whether writable. */ +# define X_OK 1 /* test whether executable. */ +# define F_OK 0 /* test whether exist. */ +#endif + +#endif -- cgit v1.2.3