dev/c/undef_ref/win/shared.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 ();
}