7 lines
91 B
C++
7 lines
91 B
C++
|
extern "C" int myc(void);
|
||
|
extern "C" int mycxx(void)
|
||
|
{
|
||
|
delete new int;
|
||
|
return myc();
|
||
|
}
|