About this example:
-------------------


This example is in two parts. The first is the file 'essai.c'
which is compiled with the good options for profiling.
The second is 'sub.c', which contains a function called in
'essai.c'. This one is not profiled.
It is so possible to see what happen when a profiled function
calls a non-profiled function: the time spend in the non-profiled
function is treated as time for the caller (and not discarded
as 'gprof' do).


NEW:
Two new files (essai2.c and sub2.c) files which are the same than
the previous one. The difference is that the "sub2.c" part is
profiled, but compiled and linked as a dynamic object (.so)
in order to test problems that occur with dynamic symbol table.
