diff options
author | jchandra <jchandra@FreeBSD.org> | 2010-06-25 05:36:36 +0000 |
---|---|---|
committer | jchandra <jchandra@FreeBSD.org> | 2010-06-25 05:36:36 +0000 |
commit | 28ebaa4671467899a9acbfb54616c310a135af30 (patch) | |
tree | 2fd7ceb0f6785d107e8832ca519aee19cce85f25 /lib/libc/mips/sys/sbrk.S | |
parent | a9f14069470b6dcee89e77f3062ec368426f771d (diff) | |
download | FreeBSD-src-28ebaa4671467899a9acbfb54616c310a135af30.zip FreeBSD-src-28ebaa4671467899a9acbfb54616c310a135af30.tar.gz |
use PTR_WORD for __curbrk and minbrk instead of .word, the new version
wil support all ABIs.
Approved by: rrs (mentor)
Diffstat (limited to 'lib/libc/mips/sys/sbrk.S')
-rw-r--r-- | lib/libc/mips/sys/sbrk.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/mips/sys/sbrk.S b/lib/libc/mips/sys/sbrk.S index 8ab981d..0989493 100644 --- a/lib/libc/mips/sys/sbrk.S +++ b/lib/libc/mips/sys/sbrk.S @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); .data _C_LABEL(__curbrk): - .word _C_LABEL(_end) + PTR_WORD _C_LABEL(_end) .text LEAF(__sys_sbrk) |