mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
16 lines
166 B
C
16 lines
166 B
C
#include <stdio.h>
|
|
|
|
extern void check_foo (void);
|
|
extern void check_bar (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
check_foo ();
|
|
check_bar ();
|
|
|
|
printf ("OK\n");
|
|
|
|
return 0;
|
|
}
|