mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Use built-in _end symbol insteadof 'end' for consistency with other
architectures. Linker defines end is synonym for _end.
This commit is contained in:
parent
94942af266
commit
5c0e10ecce
1 changed files with 2 additions and 2 deletions
|
|
@ -35,7 +35,7 @@
|
|||
__FBSDID("$FreeBSD$");
|
||||
#include "SYS.h"
|
||||
|
||||
.globl _C_LABEL(end)
|
||||
.globl _C_LABEL(_end)
|
||||
.globl CURBRK
|
||||
|
||||
#ifdef WEAK_ALIAS
|
||||
|
|
@ -47,7 +47,7 @@ WEAK_ALIAS(brk, _brk)
|
|||
.globl _C_LABEL(minbrk)
|
||||
.type _C_LABEL(minbrk),#object
|
||||
_C_LABEL(minbrk):
|
||||
.word _C_LABEL(end)
|
||||
.word _C_LABEL(_end)
|
||||
|
||||
/*
|
||||
* Change the data segment size
|
||||
|
|
|
|||
Loading…
Reference in a new issue