aboutsummaryrefslogtreecommitdiff
path: root/toys/other/pmap.c
AgeCommit message (Collapse)Author
2019-03-02Improve help consistency.Elliott Hughes
More consistent tense, capitalization, and punctuation. A few commands were missing an introductory line, so I copied those from the first comment line.
2019-01-25OpenEmbedded needs commands installed in specific places.Rob Landley
2018-10-20Some more --help consistency.Elliott Hughes
From eyeballing the output of for i in `./toybox | tr " " "\n"` ; do ./toybox $i --help ; done | \ grep '^-' | grep -v "\t"
2017-05-26Be more consistent about periods in help text.Elliott Hughes
2015-03-01Fix several printf_format warnings.Rob Landley
2014-02-16Various cleanups found by Tom Sparrow's static analysis.Rob Landley
2013-12-19Don't permute toys.optargs, cleanup code (xexec()) can free it.Rob Landley
2013-09-03Introduce libbuf analogous to toybuf but for use by lib/*.c. Change ↵Rob Landley
readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL.
2013-08-27Rewrite pmap to be simpler and match other implementation's output more closely.Rob Landley