diff options
author | Rob Landley <rob@landley.net> | 2006-08-03 15:41:12 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-03 15:41:12 +0000 |
commit | d921b2ecc0d294ad4bf8c7458fc52a60c28727d2 (patch) | |
tree | e4a2769349867c441cf2983d83097bb66701a733 /coreutils/stat.c | |
parent | 6dce0b6fa79f2d4bb7e9d90e1fbc0f6beb25f855 (diff) |
Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate
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.)
Diffstat (limited to 'coreutils/stat.c')
-rw-r--r-- | coreutils/stat.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index 7e39d5ecd..8e0121849 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c @@ -12,18 +12,6 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <stdio.h> -#include <stdint.h> -#include <sys/types.h> -#include <pwd.h> -#include <grp.h> -#include <sys/vfs.h> -#include <time.h> -#include <getopt.h> /* optind */ -#include <sys/stat.h> -#include <sys/statfs.h> -#include <sys/statvfs.h> -#include <string.h> #include "busybox.h" /* vars to control behavior */ @@ -321,7 +309,7 @@ static void print_it(char const *masterformat, char const *filename, char *b; /* create a working copy of the format string */ - char *format = bb_xstrdup(masterformat); + char *format = xstrdup(masterformat); /* Add 2 to accommodate our conversion of the stat `%s' format string * to the printf `%llu' one. */ |