1 // To compile this type: 2 // g++ -g -Wall -shared -o libtest5-fn-changed-libapp-v0.so test5-fn-changed-libapp-v0.cc 3 #include "test5-fn-changed-libapp-v0.h" 4 S0()5S0::S0() 6 : m0() 7 {} 8 S1()9S1::S1() 10 :m0(), m1() 11 {} 12 13 void bar(S0 *)14bar(S0*) 15 {} 16 17 int foo(S1 *)18foo(S1*) 19 {return 0;} 20