let 'fun' replace 'defun' totally
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-28 11:57:56 +09:00
parent b108cc79e7
commit f6d97f8301
19 changed files with 203 additions and 120 deletions

View File

@ -2055,7 +2055,6 @@ enum hcl_syncode_t
HCL_SYNCODE_CLASS,
HCL_SYNCODE_CONTINUE,
HCL_SYNCODE_DEFCLASS,
HCL_SYNCODE_DEFUN,
HCL_SYNCODE_DO,
HCL_SYNCODE_ELIF,
HCL_SYNCODE_ELSE,
@ -3352,6 +3351,26 @@ HCL_EXPORT void hcl_assertfailed (
hcl_oow_t line
);
/* =========================================================================
* HELPERS
* ========================================================================= */
HCL_EXPORT void hcl_start_ticker (
void
);
HCL_EXPORT void hcl_stop_ticker (
void
);
HCL_EXPORT void hcl_catch_termreq (
void
);
HCL_EXPORT void hcl_uncatch_termreq (
void
);
#if defined(__cplusplus)
}
#endif