12 lines
114 B
C
12 lines
114 B
C
#include <stdio.h>
|
|
|
|
extern void test(void);
|
|
|
|
void zoo(){}
|
|
|
|
int main()
|
|
{
|
|
test();
|
|
printf("OK\n");
|
|
return 0;
|
|
}
|