summaryrefslogtreecommitdiffstats
path: root/libc/misc/wordexp
Commit message (Collapse)AuthorAgeFilesLines
* convert // comments to /**/; remove empty #if/#endif pairs. no code changesDenys Vlasenko2009-09-181-3/+2
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* wordexp.c: cleanup - remove old hidden_proto's; remove unused parameterDenys Vlasenko2009-09-181-42/+3
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* wordexp.c: fix a bug where we might close stdoutDenys Vlasenko2009-09-181-5/+8
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* support building out-of-treeBernhard Reutner-Fischer2009-08-191-0/+2
| | | | | | | Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Synch with trunk @ 24165Carmelo Amoroso2008-11-271-21/+21
| | | | | Step 17: libc_hidden_proto removal (almost all). and other minor changes (inline keyword, extra character)
* Synch with trunk @ 24087Carmelo Amoroso2008-11-181-5/+5
| | | | Step 10: libc_hidden_removal
* Synch with trunk @ 24075.Carmelo Amoroso2008-11-171-1/+1
| | | | Step 6: libc/misc
* Synch with trunk @ 24075.Carmelo Amoroso2008-11-171-4/+4
| | | | | Step 5 Various Makefile.in
* Synch with trunk at rev 22997.Carmelo Amoroso2008-07-311-5/+5
| | | | | | | Basically trailing whitespaces removal, fix non standard keywords asm -> __asm__ inline -> __inline__ and some minor changes on trunk. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-29/+21
| | | | NPTL sh4 port build and work fine. All committed to allow Khem Ray working on a working branch to integrate the ARM nptl port. MIPS nptl port not tested but should still building and working fine. There are some other part non yet merged with trunk (misc/internals and some headers file that need some more work). Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fix Makefile.in and synch them with trunk. Signed-off-by: Carmelo Amoroso ↵Carmelo Amoroso2007-11-201-2/+0
| | | | <carmelo.amoroso@st.com>
* Merge from trunk and bring in NPTL code in the various 'misc' subsystems."Steven J. Hill"2006-08-242-3/+3
|
* Merge from trunk."Steven J. Hill"2006-02-282-90/+102
|
* Big fricking merge from trunk."Steven J. Hill"2006-01-071-13/+19
|
* Merge from trunk."Steven J. Hill"2005-12-101-1/+8
|
* Merge from trunk."Steven J. Hill"2005-12-081-0/+3
|
* Big merge from trunk. Stop the madness!"Steven J. Hill"2005-12-061-4/+9
|
* Merge from trunk. More to come you betcha'."Steven J. Hill"2005-12-022-71/+51
|
* Massive merge from trunk."Steven J. Hill"2005-11-171-1/+0
|
* Copy from trunk."Steven J. Hill"2005-10-301-0/+25
|
* 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).
* conditionally add wordexp, in this case ripped from glibc.Eric Andersen2003-08-242-0/+2283
| | | | I hate to add this stuff, but it is specified by SuSv3...
* Delete wordexp. There isn't much point in having this sinceEric Andersen2001-03-133-2708/+0
| | | | | so few apps use it, and it is just a stub anyways. Better to just skip it.
* Add in wordexp support (mostly stubbed out for now) since the busyboxEric Andersen2001-03-083-0/+2708
shell, lash, is about to start using wordexp. -Erik