dev/c/undef_ref/lin/shared.c

9 lines
160 B
C
Raw Normal View History

2013-02-07 16:47:02 +04:00
#include <stdio.h>
void shared_func ()
{
puts ("shared_func() called successfully! ;-)");
printf ("Calling test_func() from library: ");
test_func ();
}