9 lines
160 B
C
9 lines
160 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void shared_func ()
|
||
|
{
|
||
|
puts ("shared_func() called successfully! ;-)");
|
||
|
printf ("Calling test_func() from library: ");
|
||
|
test_func ();
|
||
|
}
|