mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-12 04:54:35 +00:00
18 lines
273 B
C
18 lines
273 B
C
|
/* Compile with:
|
||
|
|
||
|
gcc -g -Wall -L. -ltest8-fn-changed-libapp-v0 \
|
||
|
-o test8-fn-changed-app test8-fn-changed-app.c
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
#include "test8-fn-changed-libapp-v0.h"
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
struct S s;
|
||
|
memset(&s, 0, sizeof(s));
|
||
|
int r = foo(&s);
|
||
|
return r;
|
||
|
}
|