mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
14 lines
128 B
C
14 lines
128 B
C
|
#include <stdio.h>
|
||
|
|
||
|
char bar[20];
|
||
|
extern int bar_size;
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
if (bar_size == 20)
|
||
|
printf ("OK\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|