mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
12 lines
229 B
Text
12 lines
229 B
Text
|
/* Make sure the INIT section is at the end of the module so we can reclaim the space */
|
||
|
SECTIONS
|
||
|
{
|
||
|
INIT BLOCK(__section_alignment__) :
|
||
|
{
|
||
|
__init_start__ = . ;
|
||
|
*(INIT)
|
||
|
__init_end__ = . ;
|
||
|
}
|
||
|
}
|
||
|
INSERT AFTER .reloc;
|