mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
16 lines
116 B
C
16 lines
116 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern void foo (void);
|
||
|
|
||
|
void
|
||
|
foo (void)
|
||
|
{
|
||
|
printf ("DSO\n");
|
||
|
}
|
||
|
|
||
|
void
|
||
|
bar (void)
|
||
|
{
|
||
|
foo ();
|
||
|
}
|