14 lines
443 B
C
14 lines
443 B
C
|
void DivideByZeroError(void) __attribute__((__noreturn__));
|
||
|
|
||
|
void lerrorf(value_t e, char *format, ...) __attribute__((__noreturn__));
|
||
|
|
||
|
void lerror(value_t e, const char *msg) __attribute__((__noreturn__));
|
||
|
|
||
|
void fl_raise(value_t e) __attribute__((__noreturn__));
|
||
|
|
||
|
void type_error(char *fname, char *expected, value_t got)
|
||
|
__attribute__((__noreturn__));
|
||
|
|
||
|
void bounds_error(char *fname, value_t arr, value_t ind)
|
||
|
__attribute__((__noreturn__));
|