summaryrefslogtreecommitdiffstats
path: root/byterun/main.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>1998-10-02 13:02:32 +0000
committerDamien Doligez <damien.doligez-inria.fr>1998-10-02 13:02:32 +0000
commit1785aa4ef9afce6807d5d810687b376620618cf9 (patch)
treee11f59bd40aa82a9cff2f63de8ee9e9e27a619be /byterun/main.c
parent89074600b8f8425a829f253a27580b5548fd8193 (diff)
portage MacOS standalone: T=0
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2111 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/main.c')
-rw-r--r--byterun/main.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/byterun/main.c b/byterun/main.c
index de6424a39..39f1118e7 100644
--- a/byterun/main.c
+++ b/byterun/main.c
@@ -5,7 +5,7 @@
/* Xavier Leroy and Damien Doligez, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
-/* Automatique. Distributed only by permission. */
+/* en Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
@@ -27,7 +27,6 @@ extern void expand_command_line (int *, char ***);
#if macintosh
#include "rotatecursor.h"
#include "signals.h"
-int volatile have_to_interact = 0;
#endif
int main(int argc, char **argv)
@@ -36,8 +35,8 @@ int main(int argc, char **argv)
expand_command_line(&argc, &argv);
#endif
#if macintosh
- rotatecursor_init (&something_to_do, &have_to_interact);
-#endif
+ rotatecursor_init (&something_to_do);
+#endif /* macintosh */
caml_main(argv);
sys_exit(Val_int(0));
return 0; /* not reached */