1// To compile this type:
2//  gcc -g -Wall -shared -o libtest24-added-fn-parms-v1.so test24-added-fn-parms-v1.c
3void
4fun()
5{
6}
7
8void
9fun(__attribute__((unused))unsigned arg0,
10    __attribute__((unused)) char arg1,
11    __attribute__((unused)) int arg2)
12{
13}
14