mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8e5c3b23f2
and delimiters. * dir.c (remove_backslases): remove backslashes from path before calling stat(2). * dir.c (dir_s_glob): call rb_yield directly (via push_pattern) if block is given to the method. * dir.c (push_pattern): do not call rb_ary_push; yield directly. * eval.c (blk_copy_prev): reduced ALLOC_N too much. * eval.c (frame_dup): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
52 lines
959 B
C
52 lines
959 B
C
/**********************************************************************
|
|
|
|
main.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: Fri Aug 19 13:19:58 JST 1994
|
|
|
|
Copyright (C) 1993-2001 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;
|
|
{
|
|
#if defined(NT)
|
|
NtInitialize(&argc, &argv);
|
|
#endif
|
|
#if defined(__MACOS__) && defined(__MWERKS__)
|
|
argc = ccommand(&argv);
|
|
#endif
|
|
|
|
ruby_init();
|
|
ruby_options(argc, argv);
|
|
ruby_run();
|
|
return 0;
|
|
}
|