mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
13 lines
146 B
C
13 lines
146 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern char size_of_bar asm ("bar@SIZE");
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
if (10 == (long) &size_of_bar)
|
||
|
printf ("OK\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|