diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-09 23:15:08 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-09 23:15:08 +0000 |
| commit | b3b3d671a72c2cc03268e8a23bb379fdad6f5607 (patch) | |
| tree | 8fc8ade904dee168adf5d78483b31e9008442641 /ext/openssl | |
| parent | 521cf1196aca87cd06959cd79a456ac1c618aab6 (diff) | |
| download | ruby-b3b3d671a72c2cc03268e8a23bb379fdad6f5607.tar.gz ruby-b3b3d671a72c2cc03268e8a23bb379fdad6f5607.tar.xz ruby-b3b3d671a72c2cc03268e8a23bb379fdad6f5607.zip | |
* configure.in (rb_cv_missing__dtos18, rb_cv_missing_fconvert),
ext/digest/md5/md5.c, ext/openssl/ossl.c (main),
ext/socket/extconf.rb (ipv6, wide-getaddrinfo): main should be int.
* main.c (main), win32/winmain.c, wince/wincemain.c (WinMain): envp is
no longer used so long time. based on a patch from Peter Bowen at
[ruby-core:18208]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl')
| -rw-r--r-- | ext/openssl/ossl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c index b7a523626..9df7c59d2 100644 --- a/ext/openssl/ossl.c +++ b/ext/openssl/ossl.c @@ -488,7 +488,7 @@ Init_openssl() * Check if all symbols are OK with 'make LDSHARED=gcc all' */ int -main(int argc, char *argv[], char *env[]) +main(int argc, char *argv[]) { return 0; } |
