mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 18:06:23 +00:00
11 lines
96 B
C
11 lines
96 B
C
#include <stdio.h>
|
|
|
|
extern int bar;
|
|
|
|
void
|
|
foo (void)
|
|
{
|
|
if (bar == -20)
|
|
printf ("OK\n");
|
|
}
|