7 lines
75 B
C++
7 lines
75 B
C++
|
extern "C" int foo(void);
|
||
|
int main()
|
||
|
{
|
||
|
delete new int;
|
||
|
return foo();
|
||
|
}
|