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