7 lines
104 B
C++
7 lines
104 B
C++
extern "C" int foo(void)
|
|
{
|
|
// Reference C++ standard library symbols.
|
|
delete new int;
|
|
return 0;
|
|
}
|