1 /* Compile with:
2 
3    gcc -g -Wall -L. -ltest8-fn-changed-libapp-v0 \
4    -o test8-fn-changed-app test8-fn-changed-app.c
5  */
6 
7 #include <string.h>
8 #include "test8-fn-changed-libapp-v0.h"
9 
10 int
main()11 main()
12 {
13   struct S s;
14   memset(&s, 0, sizeof(s));
15   int r = foo(&s);
16   return r;
17 }
18