mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00: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;
|
|
}
|