mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-10 11:12:23 +00:00
8 lines
161 B
Raku
8 lines
161 B
Raku
SECTIONS {
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
}
|
|
value1 = DEFINED (defined) ? 1 : 2;
|
|
value2 = DEFINED (undefined) ? 1 : 2;
|