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