summaryrefslogtreecommitdiff
path: root/missing
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-02-18 06:59:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-02-18 06:59:36 +0000
commit58dd5de9664c57d72b45fd90a75f08fab506f208 (patch)
treed52f98f238f430e1ffbc6f6dbaba1e21b13db04c /missing
parentbc5ff99474cc1ca67c14471b8c95244542740ef8 (diff)
2000-02-18
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r--missing/file.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/missing/file.h b/missing/file.h
index b6cec8eb05..2d491d0fc1 100644
--- a/missing/file.h
+++ b/missing/file.h
@@ -12,12 +12,11 @@
# 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 execubale. */
-# define F_OK 0 /* test whether exist. */
-# endif
+#ifndef R_OK
+# define R_OK 4 /* test whether readable. */
+# define W_OK 2 /* test whether writable. */
+# define X_OK 1 /* test whether execubale. */
+# define F_OK 0 /* test whether exist. */
#endif
#endif