You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
273 B

/* 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;
}