summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <matz@ruby-lang.org>1997-12-25 17:06:30 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-08-17 22:09:33 +0900
commit4207990990f8c8da414710816c32ae5fd0ae6987 (patch)
tree655a18271e3e85812f7fc6e008400f2f4f795593 /main.c
parent66541bbb3630a5c512f8012c52ae777ab83beba5 (diff)
version 1.0-971225v1_0_971225
https://cache.ruby-lang.org/pub/ruby/1.0/ruby-1.0-971225.tar.gz Thu Dec 25 17:06:30 1997 Yukihiro Matsumoto <matz@netlab.co.jp> * version 1.0-971225 * some minor bug fixes.
Diffstat (limited to 'main.c')
-rw-r--r--main.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/main.c b/main.c
index 473b51d028..98a1384e40 100644
--- a/main.c
+++ b/main.c
@@ -8,6 +8,8 @@
************************************************/
+#include "ruby.h"
+
#ifdef DJGPP
unsigned int _stklen = 0x100000;
#endif
@@ -16,13 +18,6 @@ unsigned int _stklen = 0x100000;
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;