upscheme/c/scheme_compiler_gnuc.h

15 lines
467 B
C
Raw Normal View History

void DivideByZeroError(void) __attribute__((__noreturn__));
2019-08-25 15:11:00 -04:00
void lerrorf(value_t e, const char *format, ...)
__attribute__((__noreturn__));
void lerror(value_t e, const char *msg) __attribute__((__noreturn__));
void fl_raise(value_t e) __attribute__((__noreturn__));
2019-08-25 15:11:00 -04:00
void type_error(const char *fname, const char *expected, value_t got)
__attribute__((__noreturn__));
2019-08-25 15:11:00 -04:00
void bounds_error(const char *fname, value_t arr, value_t ind)
__attribute__((__noreturn__));