mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b19e36a214
eval.c, file.c, hash.c, io.c, main.c, missing.c, process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h, bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h, ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c, ext/socket/getnameinfo.c, ext/socket/socket.c, ext/tcltklib/stubs.c : replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER * wince/exe.mak : delete \r at the end of lines. * wince/mswince-ruby17.def : delete rb_obj_become git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
52 lines
957 B
C
52 lines
957 B
C
/**********************************************************************
|
|
|
|
main.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: Fri Aug 19 13:19:58 JST 1994
|
|
|
|
Copyright (C) 1993-2002 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ruby.h"
|
|
|
|
#ifdef DJGPP
|
|
unsigned int _stklen = 0x180000;
|
|
#endif
|
|
|
|
#ifdef __human68k__
|
|
int _stacksize = 262144;
|
|
#endif
|
|
|
|
#if defined __MINGW32__
|
|
int _CRT_glob = 0;
|
|
#endif
|
|
|
|
#if defined(__MACOS__) && defined(__MWERKS__)
|
|
#include <console.h>
|
|
#endif
|
|
|
|
/* to link startup code with ObjC support */
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
static void objcdummyfunction( void ) { objc_msgSend(); }
|
|
#endif
|
|
|
|
int
|
|
main(argc, argv, envp)
|
|
int argc;
|
|
char **argv, **envp;
|
|
{
|
|
#ifdef _WIN32
|
|
NtInitialize(&argc, &argv);
|
|
#endif
|
|
#if defined(__MACOS__) && defined(__MWERKS__)
|
|
argc = ccommand(&argv);
|
|
#endif
|
|
|
|
ruby_init();
|
|
ruby_options(argc, argv);
|
|
ruby_run();
|
|
return 0;
|
|
}
|