4f294c247f
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.
13 lines
163 B
ArmAsm
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
|