mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-11 12:05:55 +00:00
15 lines
107 B
C
15 lines
107 B
C
#include <stdio.h>
|
|
|
|
void
|
|
foo (void)
|
|
{
|
|
printf ("OK\n");
|
|
}
|
|
|
|
void *
|
|
bar (void)
|
|
{
|
|
foo ();
|
|
return &foo;
|
|
}
|