/* System-specific file */ #include #include #include "stone.h" void stone_badcall_default (void) { stone_report ("An uninitialized function was called. There are two\n" "reasons this could occur. First, there could be a\n" "function that needs to be exported that was not.\n" "For example, printf or strcpy. Second, there could be\n" "a module that needs to be loaded that was not.\n" "We will now cause a SIGSEGV.\n"); raise (SIGSEGV); exit (255); } void stone_die (int signal) { (void) signal; exit (255); }