diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-14 10:57:42 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-14 10:57:42 +0000 |
| commit | 8a248bee1beb9f11ed2bf259497044af64733c08 (patch) | |
| tree | 795d1362765b31801a3f123b687a2e25e1511855 | |
| parent | 4728cab6e7d739a48d5da32f55826dd13edfee73 (diff) | |
| download | ruby-8a248bee1beb9f11ed2bf259497044af64733c08.tar.gz ruby-8a248bee1beb9f11ed2bf259497044af64733c08.tar.xz ruby-8a248bee1beb9f11ed2bf259497044af64733c08.zip | |
* ext/syck/rubyext.c: add prototypes to avoid VC++ warnings.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | ext/syck/rubyext.c | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Wed May 14 19:56:43 2003 NAKAMURA Usaku <usa@ruby-lang.org> + + * ext/syck/rubyext.c: add prototypes to avoid VC++ warnings. + Wed May 14 12:23:46 2003 Minero Aoki <aamine@loveruby.net> * lib/net/http.rb (Net::HTTP#start): should check whether HTTP @@ -12,7 +16,7 @@ Tue May 13 22:31:04 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net> * lib/yaml/rubytypes.rb, lib/yaml/types.rb: using Object#object_id rather than deprecated Object#id. - * ext/token.c: changed ASCII escapes to octal notation. + * ext/syck/token.c: changed ASCII escapes to octal notation. * ext/Setup*: added entries for static linking of Syck extension. diff --git a/ext/syck/rubyext.c b/ext/syck/rubyext.c index 835c35dce..6be76d4b4 100644 --- a/ext/syck/rubyext.c +++ b/ext/syck/rubyext.c @@ -29,6 +29,10 @@ static double S_nan() { return S_zero() / S_zero(); } static VALUE syck_node_transform( VALUE ); +SYMID rb_syck_parse_handler _((SyckParser *, SyckNode *)); +SYMID rb_syck_load_handler _((SyckParser *, SyckNode *)); +void rb_syck_err_handler _((SyckParser *, char *)); + /* * read from io. */ |
