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;
|
||
|
}
|