mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-13 05:24:45 +00:00
15 lines
230 B
C++
15 lines
230 B
C++
|
// To compile this type:
|
||
|
// g++ -g -Wall -o test5-fn-changed-app -L. -ltest5-fn-changed-libapp-v0 test5-fn-changed-app.cc
|
||
|
|
||
|
#include "test5-fn-changed-libapp-v0.h"
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
S0 s0;
|
||
|
bar(&s0);
|
||
|
|
||
|
S1 s1;
|
||
|
return foo(&s1);
|
||
|
}
|