10 lines
131 B
Text
10 lines
131 B
Text
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
/* Sections to be discarded */
|
|
/DISCARD/ : {
|
|
*(.data.exit)
|
|
*(.text.exit)
|
|
}
|
|
}
|