1 // To compile this, type: 2 // gcc -shared -g -Wall -o libtest4-local-suppr-v0.so test4-local-suppr-v0.c 3 4 #include "test4-local-suppr-v0.h" 5 6 struct private_data 7 { 8 int private_data0; 9 }; 10 11 void foo(struct public_type * p,struct a_not_private_type * t)12foo(struct public_type* p __attribute__((unused)), 13 struct a_not_private_type* t __attribute__((unused))) 14 { 15 /* Do something with p */ 16 } 17