mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-23 08:29:15 +00:00
13 lines
114 B
C
13 lines
114 B
C
#include <stdio.h>
|
|
|
|
extern void test(void);
|
|
|
|
void zoo(){}
|
|
|
|
int main()
|
|
{
|
|
test();
|
|
printf("OK\n");
|
|
return 0;
|
|
}
|