// Exception definitions
// Allows mimicing of some parts of C++
// Exception handling, while it's not
// implemented.

// AUTHOR: Gary T. Leavens

#if !defined(_EXCEPTION_H)
#define _EXCEPTION_H

extern "C" {
  void abort();
}
#define throw(exception) {abort();}

#endif
