mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
11 lines
105 B
C
11 lines
105 B
C
|
extern void foo1 (void);
|
||
|
extern void foo2 (void);
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
foo1 ();
|
||
|
foo2 ();
|
||
|
return 0;
|
||
|
}
|