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.
15 lines
230 B
15 lines
230 B
7 months ago
|
// 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);
|
||
|
}
|