mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04: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");
|
|
}
|