1 // Compile with: 2 // g++ -g -fPIC -shared -o libtest32-v1.so test32-v1.c 3 4 namespace priv 5 { foo()6 int foo() {return 0;} 7 } 8 9 namespace pub 10 { bar()11 char bar() {return 0;} 12 } 13