The GNU Modula-2 front end to GCC

gm2-libs/cxxabi

DEFINITION MODULE FOR "C" cxxabi ;

(* This should only be used by the compiler and it matches the
    g++ implementation.  *)

FROM SYSTEM IMPORT ADDRESS ;
EXPORT UNQUALIFIED __cxa_begin_catch, __cxa_end_catch, __cxa_rethrow ;



PROCEDURE __cxa_begin_catch (a: ADDRESS) : ADDRESS ;

PROCEDURE __cxa_end_catch ;

PROCEDURE __cxa_rethrow ;


END cxxabi.