mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04:00
15 lines
220 B
C++
15 lines
220 B
C++
// $NetBSD: ccexc.cc,v 1.1 2000/12/08 19:21:28 drochner Exp $
|
|
|
|
// generate references to exception handling runtime code
|
|
|
|
extern "C" void ccexc(void);
|
|
|
|
void
|
|
ccexc(void)
|
|
{
|
|
try {
|
|
throw "mist";
|
|
} catch (char *e) {
|
|
}
|
|
}
|