repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't use .Xo/.Xc. Fix date format.
[netbsd-mini2440.git]
/
regress
/
usr.bin
/
rtld
/
testlib
/
ccexc.cc
blob
23f5516301d582e02e7f6a5ca5d2b1a52583091f
1
// $NetBSD$
2
3
// generate references to exception handling runtime code
4
5
extern
"C"
void
ccexc
(
void
);
6
7
void
8
ccexc
(
void
)
9
{
10
try
{
11
throw
"mist"
;
12
}
catch
(
char
*
e
) {
13
}
14
}