summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/valloc.c
Commit message (Collapse)AuthorAgeFilesLines
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-181-1/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-201-1/+1
| | | | | Appears to build fine (several .configs tried)
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-2/+2
| | | | missing headers, other jump relocs removed
* More hiding, including __mempcpyPeter S. Mazinger2005-12-031-1/+1
|
* 100 JUMP relocs less (remaining 431) by hiding internally used onesPeter S. Mazinger2005-11-261-0/+2
|
* Add #include <malloc.h> to silence warning.Manuel Novoa III2002-09-061-0/+1
|
* Make sjhill happy, and revive memalignEric Andersen2002-09-041-30/+3
| | | | -Erik
* Per discussions with Erik, 'valloc.c' should be built on top of whichever"Steven J. Hill"2002-09-041-0/+61
memory allocator you choose. Unfortunately, the 'malloc-930716' needs a fair amount of work before it is functional. For now, changes have been made to add the 'valloc' call and it works properly with the plain 'malloc' allocator.