summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-24 12:23:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-24 12:23:52 +0000
commit2fb01bc0d145f133f0c5da468b6f378787261020 (patch)
treeb09cb1143e085257f0b52d3750baa5af930b75f8 /include
parenta69021a69961425a00a7275b1af2abec05a3bde5 (diff)
comment changed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/io.h b/include/ruby/io.h
index c8c5d7ad5b..5a8687ab69 100644
--- a/include/ruby/io.h
+++ b/include/ruby/io.h
@@ -30,10 +30,10 @@ extern "C" {
typedef struct rb_io_t {
int fd; /* file descriptor */
FILE *stdio_file; /* stdio ptr for read/write if available */
- int mode; /* mode flags */
+ int mode; /* mode flags: FMODE_XXXs */
rb_pid_t pid; /* child's pid (for pipes) */
int lineno; /* number of lines read */
- VALUE pathv; /* pathname for file */
+ VALUE pathv; /* pathname for file */
void (*finalize)(struct rb_io_t*,int); /* finalize proc */
char *wbuf; /* wbuf_off + wbuf_len <= wbuf_capa */