summaryrefslogtreecommitdiffstats
path: root/libc/string/strtok_r.c
Commit message (Collapse)AuthorAgeFilesLines
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-181-5/+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-2/+2
| | | | | Appears to build fine (several .configs tried)
* Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL blockDenis Vlasenko2008-05-191-3/+3
| | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's.
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-8/+13
| | | | missing headers, other jump relocs removed
* Complete split of all the string functions. Hope haven't broken too much. ↵Peter S. Mazinger2006-01-031-9/+45
| | | | wcscoll/strcoll needs some love ...
* Hide some of mem* and str*Peter S. Mazinger2005-11-271-2/+2
|
* Correct Warning: function declaration isn't a prototypePeter S. Mazinger2005-11-151-2/+2
|
* Split up wstring.c and use attribute_hiddenPeter S. Mazinger2005-11-141-0/+19
|
* Cleanup the mess, remove now obsolete filesEric Andersen2002-06-121-53/+0
| | | | -Erik
* Use public interface, not a glibc style private oneEric Andersen2002-01-061-3/+1
| | | | -Erik
* Cleanup the toploevel makefile handing of shared libs. Add weak_aliasEric Andersen2001-06-121-1/+1
| | | | | | define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik
* Added __strtok_r function. Change strtok to a wrapper around __strtok_r andManuel Novoa III2001-03-011-0/+55
add a weak alias of __strtok_r for strtok_r since optional. Also reduced code size.