mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
18 lines
143 B
C
18 lines
143 B
C
#include <stdio.h>
|
|
|
|
extern void foo (void);
|
|
|
|
void
|
|
bar (void)
|
|
{
|
|
printf ("MAIN bar\n");
|
|
}
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
bar ();
|
|
foo ();
|
|
return 0;
|
|
}
|