
This is a code snippet to test that versioned symbols is working.
Released under GPL version 2 or later.


Junichi Uekawa,
15 June 2004

Running the makefile should give the following output:

$ make
LD_LIBRARY_PATH=. ./c
Version 1
Version 2
Version 1



This program 'c' links with library bver1 and bver2,
which in turn has a library dependency of

bver1->aver1
bver2->aver2


aver1 and aver2 have a function with the same name 'print_func'.
aver1 and aver2 are versioned, and bver1 and bver2 will
be able to call the function that they are linked against.



