summaryrefslogtreecommitdiffstats
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
commit35301f1941dc92a46f45884380e7cc30081d5b95 (patch)
treec268af56267dcc487f65cec821380293b37f4749 /missing
parent938e3b7ddb7a3025041108c408f8ffaa79802d6d (diff)
downloadruby-35301f1941dc92a46f45884380e7cc30081d5b95.tar.gz
ruby-35301f1941dc92a46f45884380e7cc30081d5b95.tar.xz
ruby-35301f1941dc92a46f45884380e7cc30081d5b95.zip
2000-02-18
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@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 b6cec8eb0..2d491d0fc 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