Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | made "test" an ash built-in. | Paul Fox | 2006-06-08 | 1 | -151/+0 |
| | | | | | | | | | | | | | | | | | | | moved the contents of libbb/bb_echo.c back into coreutils/echo.c, which is a more reasonable place for them than libbb. this forces anyone who wants echo and test to be builtin to ash to also have them available as applets. their cost is very small, and the number of people who wouldn't want them as applets is also very small. added warning about shell builtins vs. CONFIG_FEATURE_SH_STANDALONE_SHELL, which conflicts with their use. thanks to nathanael copa for debugging help. some string size optimization in test.c may have been lost with this commit, but this is a good new baseline. | ||||
* | - move buffer allocation schemes to libbb.h | Bernhard Reutner-Fischer | 2006-04-03 | 1 | -1/+1 |
| | | | | - include the correct headers: applets need busybox.h while lib* need libbb.h | ||||
* | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | 2006-03-06 | 1 | -1/+1 |
| | | | | definitions. (That should only be on prototypes.) | ||||
* | - add some ATTRIBUTE_UNUSED. | Bernhard Reutner-Fischer | 2006-01-30 | 1 | -14/+2 |
| | | | | - use shorter boilerplate while at it. | ||||
* | implemented a builtin echo command in ash. moved the guts of the | Paul Fox | 2005-08-09 | 1 | -0/+163 |
echo applet into libbb, and now call bb_echo() from both echo.c and ash.c |