aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/main.c b/main.c
index e815c9b210..75227e02bf 100644
--- a/main.c
+++ b/main.c
@@ -19,7 +19,11 @@
/* to link startup code with ObjC support */
#if (defined(__APPLE__) || defined(__NeXT__)) && defined(__MACH__)
-static void objcdummyfunction( void ) { objc_msgSend(); }
+static void
+objcdummyfunction(void)
+{
+ objc_msgSend();
+}
#endif
int
@@ -37,10 +41,9 @@ main(int argc, char **argv, char **envp)
#endif
{
- RUBY_INIT_STACK
- ruby_init();
- ruby_options(argc, argv);
- ruby_run();
+ RUBY_INIT_STACK ruby_init();
+ ruby_options(argc, argv);
+ ruby_run();
}
return 0;
}