aboutsummaryrefslogtreecommitdiff
path: root/coreutils/stat.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* usage.c: remove reference to busybox.hvda2007-05-261-1/+1
| | | | | | | | *: s/include "busybox.h"/include "libbb.h" git-svn-id: svn://busybox.net/trunk/busybox@18696 69ca8d6d-28ef-0310-b511-8ec308f3f277
* style fixesvda2007-04-131-34/+34
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18433 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add some missed statics on constant objects.vda2007-04-081-7/+7
| | | | | | | | | | | | | fix few #ifndef ENABLE_xxx # size busybox_old busybox_unstripped text data bss dec hex filename 677152 2920 18208 698280 aa7a8 busybox_old 676420 2920 18208 697548 aa4cc busybox_unstripped git-svn-id: svn://busybox.net/trunk/busybox@18366 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - remove superfluous bss user (flags) and manually unswitch some areas:aldot2007-04-041-138/+92
| | | | | | | | | text data bss dec hex filename 4517 0 34 4551 11c7 stat.o.oorig 4300 0 30 4330 10ea stat.o git-svn-id: svn://busybox.net/trunk/busybox@18320 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix accumulated whitespace and indentation damagevda2007-03-201-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18176 69ca8d6d-28ef-0310-b511-8ec308f3f277
* selinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> (HitachiSoft)vda2007-03-101-16/+153
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18062 69ca8d6d-28ef-0310-b511-8ec308f3f277
* syslogd: fix "readpath bug" by using readlink insteadvda2007-02-111-2/+2
| | | | | | | libbb: rename xgetcwd and xreadlink git-svn-id: svn://busybox.net/trunk/busybox@17854 69ca8d6d-28ef-0310-b511-8ec308f3f277
* suppress warnings about easch <applet>_main() havingvda2007-02-031-0/+1
| | | | | | | no preceding prototype git-svn-id: svn://busybox.net/trunk/busybox@17740 69ca8d6d-28ef-0310-b511-8ec308f3f277
* httpd: fix cgi-bin/index.cgi support, add example of it,vda2006-11-211-31/+37
| | | | | | | | stat: fix end-of-line if format is specified (wasn't printing it), fix %z (time) format to match coreutils 6.3 git-svn-id: svn://busybox.net/trunk/busybox@16597 69ca8d6d-28ef-0310-b511-8ec308f3f277
* getopt_ulflags -> getopt32.vda2006-10-031-1/+1
| | | | | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. git-svn-id: svn://busybox.net/trunk/busybox@16305 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidatelandley2006-08-031-13/+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.) git-svn-id: svn://busybox.net/trunk/busybox@15767 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Standardize on the vi editing directives being on the first line.rpjday2006-07-021-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15581 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - typo: s/derefernce/dereference/galdot2006-04-181-2/+2
| | | | | | | Thanks to P.J. Day. git-svn-id: svn://busybox.net/trunk/busybox@14914 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - use C99 %j format to print intmax.aldot2006-04-121-16/+16
| | | | | | | Closes bugs #802 and #743 git-svn-id: svn://busybox.net/trunk/busybox@14831 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - include inttypes.h as pointed out by Jason Schoon.aldot2006-04-051-17/+4
| | | | | | | - use shorter boilerplate and switch to USE_FEATURE_STAT_FORMAT while at it. git-svn-id: svn://busybox.net/trunk/busybox@14759 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - use proper macros to print intmax_t.aldot2006-04-051-3/+3
| | | | | | | PRIuMAX and PRIxMAX are defined in inttypes depending on the wordsize. git-svn-id: svn://busybox.net/trunk/busybox@14755 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - Rich Felker writes: fix invalid printf format stringsaldot2006-03-291-1/+1
| | | | | | | | | | | | http://busybox.net/lists/busybox/2006-March/019568.html text data bss dec hex filename 900619 10316 1038724 1949659 1dbfdb busybox.oorig 900603 10316 1038724 1949643 1dbfcb busybox git-svn-id: svn://busybox.net/trunk/busybox@14697 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Denis Vlasenko to constify things and fix a few typos.landley2006-02-221-3/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14210 69ca8d6d-28ef-0310-b511-8ec308f3f277
* just whitespacetimr2006-01-251-9/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13584 69ca8d6d-28ef-0310-b511-8ec308f3f277
* another more constvodz2005-10-201-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11897 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Cleanup patch by Bernhard Fischer, removing unnecessary includes oflandley2005-09-111-1/+1
| | | | | | | getopt.h, whitespace changes, typos, etc. git-svn-id: svn://busybox.net/trunk/busybox@11422 69ca8d6d-28ef-0310-b511-8ec308f3f277
* just punt all the f_frsize crap since not all linux headers support it Bug 346vapier2005-07-261-22/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10917 69ca8d6d-28ef-0310-b511-8ec308f3f277
* dont use f_frsize unless linux-2.6.0 or bettervapier2005-06-291-1/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10622 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rework human_fstype to cut down sizevapier2005-04-241-78/+47
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10170 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rework options to get rid of extra variablesvapier2005-04-241-15/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10169 69ca8d6d-28ef-0310-b511-8ec308f3f277
* stat implementation based upon coreutilsvapier2005-04-231-0/+599
git-svn-id: svn://busybox.net/trunk/busybox@10163 69ca8d6d-28ef-0310-b511-8ec308f3f277