summaryrefslogtreecommitdiffstats
path: root/libc/misc/search
Commit message (Collapse)AuthorAgeFilesLines
* hcreate_r: silence warning in helper funcBernhard Reutner-Fischer2010-06-111-4/+4
| | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* prettify make cleanBernhard Reutner-Fischer2010-03-251-2/+2
| | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-184-13/+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>
* support building out-of-treeBernhard Reutner-Fischer2009-08-171-0/+2
| | | | | | Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-204-10/+10
| | | | | Appears to build fine (several .configs tried)
* - less verbose make cleanBernhard Reutner-Fischer2008-11-071-4/+4
|
* - Fix arguments to compare function. Closes #1081Bernhard Reutner-Fischer2008-09-241-1/+1
|
* - trim any trailing whitespaceBernhard Reutner-Fischer2008-07-232-3/+3
|
* replace "if (p) free(p)" by just "free(p)" - free(NULL) is safe.Denis Vlasenko2008-05-201-3/+2
|
* Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL blockDenis Vlasenko2008-05-192-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.
* fixup my copyright notice, trim stale remnants of older notices whichEric Andersen2006-07-051-1/+0
| | | | I had clearly run search/replace on that were cluttering things up.
* libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵Peter S. Mazinger2006-02-131-59/+16
| | | | libc.a/libc.so, the diffs go into libc-static-y/libc-shared-y exclusively, add IMA to libc, don't use any MSRC anymore
* Add files for IMA. Yes, I know it's a hack and no, I won't split the ↵Peter S. Mazinger2006-02-1312-0/+96
| | | | affected files
* Rename some files, that will conflict w/ IMAPeter S. Mazinger2006-02-134-3/+3
|
* Reorganize a bit and mark tdestroy as GNU extensionPeter S. Mazinger2006-01-231-4/+5
|
* Remove redundancy and move hidden prototypes aroundPeter S. Mazinger2006-01-231-4/+4
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-224-13/+0
| | | | is a useless attempt
* s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now ↵Peter S. Mazinger2006-01-161-1/+0
| | | | see what libpthread will do ...
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-142-6/+8
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-144-26/+36
| | | | missing headers, other jump relocs removed
* Implement __tfind/__lfind and use themPeter S. Mazinger2005-12-082-3/+8
|
* More hiding, including __mempcpyPeter S. Mazinger2005-12-033-7/+12
|
* Hide mostly used functionsPeter S. Mazinger2005-12-012-4/+4
|
* Hiding againPeter S. Mazinger2005-11-291-1/+2
|
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Only because of multi sources I had to touch up these and add code duplicationPeter S. Mazinger2005-11-011-4/+16
|
* Remove last unused references to libc-a-pic-, we use only the lists in ↵Peter S. Mazinger2005-11-011-1/+0
| | | | libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-61/+8
|
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-251-0/+66
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-20/+16
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* merge parallel build supportMike Frysinger2005-01-251-5/+4
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Fix the bugs I stupidly addedEric Andersen2003-09-062-1/+28
|
* Cut and paste error.Manuel Novoa III2002-12-021-4/+5
|
* Add hsearch and hsearch_r. Consolidate all functions prototyped inManuel Novoa III2002-12-026-0/+650
search.h in one directory.