mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
13 lines
141 B
Text
13 lines
141 B
Text
|
|
/*
|
||
|
|
* $FreeBSD$
|
||
|
|
*/
|
||
|
|
|
||
|
|
SECTIONS
|
||
|
|
{
|
||
|
|
.text : { *(.text) }
|
||
|
|
.data : { *(.data) }
|
||
|
|
. = 0x1243;
|
||
|
|
.putssjis : { *(.putssjis) }
|
||
|
|
.bss : { *(.bss) }
|
||
|
|
}
|