mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-04 02:02:22 +00:00
10 lines
141 B
C
10 lines
141 B
C
static int foox __attribute__ ((section (".data00"))) = 'f' + 'o' + 'o';
|
|
|
|
int foo (int x)
|
|
{
|
|
if (x)
|
|
return foox;
|
|
else
|
|
return 0;
|
|
}
|