14 lines
107 B
C
14 lines
107 B
C
#include <stdio.h>
|
|
|
|
void
|
|
foo (void)
|
|
{
|
|
printf ("OK\n");
|
|
}
|
|
|
|
void *
|
|
bar (void)
|
|
{
|
|
foo ();
|
|
return &foo;
|
|
}
|