9 lines
141 B
C
9 lines
141 B
C
static int foox __attribute__ ((section (".data00"))) = 'f' + 'o' + 'o';
|
|
|
|
int foo (int x)
|
|
{
|
|
if (x)
|
|
return foox;
|
|
else
|
|
return 0;
|
|
}
|