diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-01 19:55:25 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-01 19:55:25 +0000 |
commit | 9ed3d64d1d3e0fd60c9a65d621efdf66c59b0d9d (patch) | |
tree | a22c964558bdf523fdbc872feb8c70695d150915 /string.c | |
parent | 871913462f7e6d3a74b7408ab1677e93f53b0b23 (diff) |
* suppress warnings on cygwin, mingw and mswin.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4479,7 +4479,7 @@ static VALUE rb_str_crypt(str, salt) VALUE str, salt; { - extern char *crypt(); + extern char *crypt _((const char *, const char*)); VALUE result; const char *s; |