summaryrefslogtreecommitdiff
path: root/main.c
blob: 473b51d02893f8705cc06676a2fdc4b0c0b15109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/************************************************

  main.c -

  $Author: matz $
  $Date: 1996/12/25 09:32:03 $
  created at: Fri Aug 19 13:19:58 JST 1994

************************************************/

#ifdef DJGPP
unsigned int _stklen = 0x100000;
#endif

#ifdef __human68k__
int _stacksize = 131072;
#endif

#if (_MSC_VER  >= 1000)
__declspec(dllexport) void __stdcall ruby_init();
__declspec(dllexport) void __stdcall ruby_options(int, char *[]);
__declspec(dllexport) void __stdcall ruby_run(void);
__declspec(dllexport) void __stdcall NtInitialize(int *, char ***);
#endif

int
main(argc, argv, envp)
    int argc;
    char **argv, **envp;
{
#if defined(NT)
    NtInitialize(&argc, &argv);
#endif

    ruby_init();
    ruby_options(argc, argv);
    ruby_run();
}