dev/c/undef_ref/win/shared.c
2013-02-07 17:55:19 +04:00

9 lines
160 B
C

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