mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-02 23:42:05 +00:00
8 lines
153 B
C
8 lines
153 B
C
|
/* Compile with:
|
||
|
gcc -g -Wall -shared test20-add-fn-parm-v1.c -o libtest20-add-fn-parm-v1.so
|
||
|
*/
|
||
|
|
||
|
int
|
||
|
add(int a, int b, int c)
|
||
|
{return a + b + c;}
|