mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
15 lines
154 B
C
15 lines
154 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int foo = -1;
|
|
|
|
extern void bar ();
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
bar ();
|
|
printf ("OK\n");
|
|
return 0;
|
|
}
|