minix/lib/nbsd_libc/arch/i386/sys-minix/brksize.S
Gianluca Guida 4f294c247f Add NBSDLibc Minix specific files.
This patch mainly copies and modifies files existing in
the current libc implementing minix specific functions.

To keep consisten with the NetBSD libc, we remove 
namespace stubs and we use "namespace.h" and weak
links.
2011-02-17 17:11:09 +00:00

13 lines
163 B
ArmAsm

#if defined(__ELF__)
.globl _end
.globl _brksize
.data
_brksize: .long _end
#else
.globl __brksize
.data
.extern endbss, __brksize
__brksize:
.long endbss
#endif