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 | a64266a72837c350ac6552ac5cb14591b5cb2b05 () | |
tree | 8fc8ade904dee168adf5d78483b31e9008442641 /win32/winmain.c | |
parent | 0e3d10173bec301c075555e20a0fc1da853ab35c (diff) |
* 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 from Peter Bowen at [ruby-core:18208] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | win32/winmain.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ #include <windows.h> #include <stdio.h> -extern int main(int, char**, char**); int WINAPI WinMain(HINSTANCE current, HINSTANCE prev, LPSTR cmdline, int showcmd) { - return main(0, NULL, NULL); } |