summaryrefslogtreecommitdiff
path: root/libbb/dump.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* trylink: produce even more info about final link stageDenis Vlasenko2007-08-121-5/+5
| | | | | | | | | trylink: explain how to modify link and drastically decrease amount of padding (unfortunately, needs hand editing ATM). *: add ALIGN1 / ALIGN2 to global strings and arrays of bytes and shorts size saving: 0.5k
* Replace index_in_[sub]str_array with index_in_[sub]strings,Denis Vlasenko2007-07-241-1/+1
| | | | | | | | | which scans thru "abc\0def\0123\0\0" type strings. Saves 250 bytes. text data bss dec hex filename 781266 1328 11844 794438 c1f46 busybox_old 781010 1328 11844 794182 c1e46 busybox_unstripped
* random shrinkage of statics, -60 bytes savedDenis Vlasenko2007-06-211-6/+10
|
* preparatory patch for -Wwrite-strings #2Denis Vlasenko2007-01-291-1/+1
|
* style fixesDenis Vlasenko2006-12-261-1/+1
| | | | last xcalloc replaced by xzalloc
* leftover of e2fsck surgeryDenis Vlasenko2006-12-261-1/+3
|
* remove casts from xmalloc()Denis Vlasenko2006-12-191-2/+2
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-271-8/+8
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-3/+3
|
* last nail into error_msg() (de)capitalizationDenis Vlasenko2006-10-271-4/+4
|
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-061-2/+2
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-4/+1
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-0/+1
|
* Remove all usage of the "register" storage class specifier."Robert P. J. Day"2006-07-011-10/+10
|
* Fix bug http://bugs.busybox.net/view.php?id=874 where hexdump -C got itsRob Landley2006-06-281-2/+3
| | | | spacing wrong.
* skip_whitespace() shouldn't claim its return value is const, it doesn't knowRob Landley2006-06-181-18/+15
| | | | that and callers wind up typecasting it back.
* - convert xcalloc(1,x) to xzallocBernhard Reutner-Fischer2006-05-311-3/+3
|
* use memmove() instead of bcopy()Mike Frysinger2006-04-161-6/+6
|
* use memcmp() not bcmp()Mike Frysinger2006-04-161-2/+2
|
* rfelker writes in Bug 740: s/u_char/unsigned char/Mike Frysinger2006-02-191-12/+12
|
* - bzero -> memsetBernhard Reutner-Fischer2006-01-311-14/+2
| | | | | | | | | | | | | | | text data bss dec hex filename 1652855 14444 1215616 2882915 2bfd63 busybox.oorig.gcc-3.3 1652823 14444 1215616 2882883 2bfd43 busybox.gcc-3.3 1603655 14412 1215552 2833619 2b3cd3 busybox.oorig.gcc-3.4 1603655 14412 1215552 2833619 2b3cd3 busybox.gcc-3.4 1609755 14508 1215744 2840007 2b55c7 busybox.oorig.gcc-4.0 1609755 14508 1215744 2840007 2b55c7 busybox.gcc-4.0 1590495 13516 1215392 2819403 2b054b busybox.oorig.gcc-4.1-HEAD 1590495 13516 1215392 2819403 2b054b busybox.gcc-4.1-HEAD 1589079 13036 1213248 2815363 2af583 busybox.oorig.gcc-4.2-HEAD 1589079 13036 1213248 2815363 2af583 busybox.gcc-4.2-HEAD
* just whitespaceTim Riker2006-01-251-1/+1
|
* Patch from Felipe Kellermann, "There is a call to printf using `*pr-cchar'Glenn L McGrath2004-07-231-1/+1
| | | | referencing a string and using a single char, when *p <= 0x1f."
* Add part of a patch from Vernon Sauder that i missed a while backGlenn L McGrath2004-05-021-1/+1
|
* Add missing include filesEric Andersen2004-03-271-0/+1
|
* s/fileno\(stdin\)/STDIN_FILENO/gEric Andersen2004-03-271-1/+1
| | | | s/fileno\(stdout\)/STDOUT_FILENO/g
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-2/+2
|
* Patch from Vernon Sauder.Glenn L McGrath2004-03-051-1/+1
| | | | | | The off_t type is not a consistent size; it depends on the kernel options (something about large file support). Therefore, the format string for printing an address is not always the same.
* s/u_int/unsigned int/gEric Andersen2004-01-301-4/+4
| | | | s/u_short/unsigned short/g
* sync with waldiGlenn L McGrath2003-04-211-1/+1
|
* Patch from David Updegraff to use calloc so that forward pointers start outEric Andersen2003-04-191-7/+29
| | | | | NULL, and so it can handle format strings that have stuff _after_ the last %? specification
* Major coreutils update.Manuel Novoa III2003-03-191-313/+204
|
* Run through indent, fix commentsGlenn L McGrath2002-08-221-176/+222
|
* Remove advertising clauses in accordance withAaron Lehmann2002-06-231-5/+1
| | | | ftp://ftp.cs.berkeley.edu/ucb/4bsd/README.Impt.License.Change
* Introduce od and hexdump appletsGlenn L McGrath2001-11-021-0/+863