summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-20 10:21:16 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-20 10:21:16 +0000
commitc7bdb0d8b8d4228f4d796777dc6815a3c6162635 (patch)
treebd76023b54012be9f2e2165396fe9393789069fe /io.c
parentdf453bab063fb65f7d2bf5088e6107272a1d3e9e (diff)
* io.c (S_ISREG): need to define S_ISREG before it is used first.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/io.c b/io.c
index b0518c1b71..e128a1b8c1 100644
--- a/io.c
+++ b/io.c
@@ -372,6 +372,10 @@ io_alloc(klass)
return (VALUE)io;
}
+#ifndef S_ISREG
+# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
+#endif
+
static int
wsplit_p(OpenFile *fptr)
{
@@ -1181,10 +1185,6 @@ rb_io_fread(ptr, len, f)
return n;
}
-#ifndef S_ISREG
-# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
-#endif
-
#define SMALLBUF 100
static long