Mercurial > hg > octave-lyh
changeset 102:c9a2dd0150af
[project @ 1993-09-13 03:41:42 by jwe]
author | jwe |
---|---|
date | Mon, 13 Sep 1993 03:41:57 +0000 |
parents | 6f35b150c579 |
children | 4c130d05db38 |
files | src/utils.cc src/utils.h |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/utils.cc +++ b/src/utils.cc @@ -1014,7 +1014,7 @@ /* * Return to the main command loop in octave.cc. */ -volatile void +void volatile jump_to_top_level (void) { run_all_unwind_protects ();
--- a/src/utils.h +++ b/src/utils.h @@ -58,7 +58,7 @@ extern char *get_working_directory (char *); extern int change_to_directory (char *); extern int is_newer (char *, time_t); -extern volatile void jump_to_top_level (void); +extern void volatile jump_to_top_level (void); extern char *s_plural (int); extern char *es_plural (int); extern char *save_in_tmp_file (tree_constant& t, int nd = 2, int para = 0);