1/* Compile with: 2 gcc -g -Wall -shared test20-add-fn-parm-v0.c -o libtest20-add-fn-parm-v0.so 3*/ 4 5int 6add(int a, int b) 7{return a+b;} 8