dev/c/undef_ref/lin/test.c

13 lines
170 B
C
Raw Normal View History

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