diff options
author | Alain Frisch <alain@frisch.fr> | 2013-11-13 13:16:15 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2013-11-13 13:16:15 +0000 |
commit | a51080b15a02385abbd3ebf68905a85be1df88aa (patch) | |
tree | 6220a61942d01f1e0c552462eb159ca486563e25 /byterun/startup.c | |
parent | 632d7e20a39607802108f9454a5ff5ae091b68ae (diff) | |
download | ocaml-raise_variants.tar.gz |
No need for caml_init_exceptions.raise_variants
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/raise_variants@14288 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/startup.c')
-rw-r--r-- | byterun/startup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/byterun/startup.c b/byterun/startup.c index 923723f8d0..80ffe90b5d 100644 --- a/byterun/startup.c +++ b/byterun/startup.c @@ -429,7 +429,6 @@ CAMLexport void caml_main(char **argv) caml_oldify_one (caml_global_data, &caml_global_data); caml_oldify_mopup (); /* Initialize system libraries */ - caml_init_exceptions(); caml_sys_init(exe_name, argv + pos); #ifdef _WIN32 /* Start a thread to handle signals */ @@ -514,7 +513,6 @@ CAMLexport void caml_startup_code( caml_section_table = section_table; caml_section_table_size = section_table_size; /* Initialize system libraries */ - caml_init_exceptions(); caml_sys_init(exe_name, argv); /* Execute the program */ caml_debugger(PROGRAM_START); |