diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-02 15:58:20 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-02 15:58:20 +0000 |
commit | d15f9f0dfc7351c9499d927a251e461523fadb96 (patch) | |
tree | 9c016814c13034613419251a1e3f4e6642644929 | |
parent | aefe822af0cf75325ffd4aa3200fdc52921e98bd (diff) |
Add missing minbrk symbol, fixes profiling builds.
-rw-r--r-- | lib/libc/arch/arm/sys/sbrk.S | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/arch/arm/sys/sbrk.S b/lib/libc/arch/arm/sys/sbrk.S index f4b871efeaf..d66e49137c7 100644 --- a/lib/libc/arch/arm/sys/sbrk.S +++ b/lib/libc/arch/arm/sys/sbrk.S @@ -1,4 +1,4 @@ -/* $OpenBSD: sbrk.S,v 1.2 2004/02/01 05:40:52 drahn Exp $ */ +/* $OpenBSD: sbrk.S,v 1.3 2004/02/02 15:58:19 drahn Exp $ */ /* $NetBSD: sbrk.S,v 1.7 2003/08/07 16:42:05 agc Exp $ */ /*- @@ -44,8 +44,12 @@ WEAK_ALIAS(sbrk, _sbrk) .align 0 .globl CURBRK .type CURBRK,#object + .globl minbrk + .type minbrk,#object CURBRK: .word _C_LABEL(end) +_ASM_LABEL(minbrk): + .word _C_LABEL(end) /* * Change the data segment size |