diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-12 23:11:37 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-12 23:11:37 +0300 |
commit | 8ce87087172ee5be4ee72a1513daad3821185bf7 (patch) | |
tree | 5073b5de1171bd71fea21adea7e8944a18e57999 /msg.c | |
parent | 820b6a2ccb7859e15ade36af6ac1d0d08c1da4b1 (diff) | |
download | egawk-8ce87087172ee5be4ee72a1513daad3821185bf7.tar.gz egawk-8ce87087172ee5be4ee72a1513daad3821185bf7.tar.bz2 egawk-8ce87087172ee5be4ee72a1513daad3821185bf7.zip |
More API implementations and testext improvements.
Diffstat (limited to 'msg.c')
-rw-r--r-- | msg.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -159,6 +159,14 @@ gawk_exit(int status) longjmp(fatal_tag, 1); } + final_exit(status); +} + +/* final_exit --- run extension exit handlers and exit */ + +void +final_exit(int status) +{ /* run any extension exit handlers */ run_ext_exit_handlers(status); |