You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
196 B

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