android13/external/libabigail/tests/data/test-abicompat/test1-fn-removed-app.cc

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;
}