#include #include "exceptions.h" void f() { throw(89); printf("All good.\n"); } int main(void) { try { f(); } catch { printf("Caught %d!\n", excptno); } return 0; }