summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-03-19 03:20:24 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-03-19 03:20:24 +0000
commit5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8 (patch)
treecbaec0fd2c96e995c07daf489fbb8f62782621c9 /intern.h
parentd97ac4405eb23ce98c49de5f1fd486755aa6a503 (diff)
downloadruby-5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8.tar.gz
ruby-5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8.tar.xz
ruby-5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8.zip
* dir.c (glob_helper): replace lstat() by stat() to follow symlink
in the case like 'symlink/*'. * dir.c (glob_helper): gave warning too much. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern.h b/intern.h
index e3fec0967..1d0f38b60 100644
--- a/intern.h
+++ b/intern.h
@@ -182,8 +182,8 @@ char *rb_find_file _((char*));
void rb_gc_mark_locations _((VALUE*, VALUE*));
void rb_mark_tbl _((struct st_table*));
void rb_mark_hash _((struct st_table*));
-void rb_gc_mark_maybe _((void*));
-void rb_gc_mark _((void*));
+void rb_gc_mark_maybe _((VALUE));
+void rb_gc_mark _((VALUE));
void rb_gc_force_recycle _((VALUE));
void rb_gc _((void));
void rb_gc_call_finalizer_at_exit _((void));