1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6int aborting(void);
7void update_force_abort(void);
8int should_abort(int retcode);
9int aborted_in_try(void);
10int cause_errthrow(char_u *mesg, int severe, int *ignore);
11void free_global_msglist(void);
12void do_errthrow(struct condstack *cstack, char_u *cmdname);
13int do_intthrow(struct condstack *cstack);
14char_u *get_exception_string(void *value, except_type_T type, char_u *cmdname, int *should_free);
15void discard_current_exception(void);
16void report_make_pending(int pending, void *value);
17void report_resume_pending(int pending, void *value);
18void report_discard_pending(int pending, void *value);
19void ex_if(exarg_T *eap);
20void ex_endif(exarg_T *eap);
21void ex_else(exarg_T *eap);
22void ex_while(exarg_T *eap);
23void ex_continue(exarg_T *eap);
24void ex_break(exarg_T *eap);
25void ex_endwhile(exarg_T *eap);
26void ex_throw(exarg_T *eap);
27void do_throw(struct condstack *cstack);
28void ex_try(exarg_T *eap);
29void ex_catch(exarg_T *eap);
30void ex_finally(exarg_T *eap);
31void ex_endtry(exarg_T *eap);
32void enter_cleanup(cleanup_T *csp);
33void leave_cleanup(cleanup_T *csp);
34int cleanup_conditionals(struct condstack *cstack, int searched_cond, int inclusive);
35void rewind_conditionals(struct condstack *cstack, int idx, int cond_type, int *cond_level);
36void ex_endfunction(exarg_T *eap);
37int has_loop_cmd(char_u *p);
38#include "nvim/func_attr.h"
39