mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-13 05:24:45 +00:00
14 lines
196 B
C++
14 lines
196 B
C++
|
// Compile with:
|
||
|
// g++ -g -Wall -L. -ltest1-fn-removed-v0 -o test1-fn-removed-app test1-fn-removed-app.cc
|
||
|
|
||
|
extern void fun1();
|
||
|
extern void fun2();
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
fun1();
|
||
|
fun2();
|
||
|
return 0;
|
||
|
}
|