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 barx __attribute__ ((section (".data01"))) = 'b' + 'a' + 'r';
|
|
|
|
int bar (int x)
|
|
{
|
|
if (x)
|
|
return barx;
|
|
else
|
|
return 0;
|
|
}
|