aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraaronl <aaronl@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-23 07:28:45 +0000
committeraaronl <aaronl@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-23 07:28:45 +0000
commitb422328fd2930d839206d405dcbf48e6c0d2344e (patch)
treee7d323a3dc01713729218eae9ab2b06d62a27590
parent438d00f461dac90777ea3839f06e1e2fba8dbb8b (diff)
downloadbusybox-w32-b422328fd2930d839206d405dcbf48e6c0d2344e.tar.gz
busybox-w32-b422328fd2930d839206d405dcbf48e6c0d2344e.tar.bz2
busybox-w32-b422328fd2930d839206d405dcbf48e6c0d2344e.zip
move some globals to bss
git-svn-id: svn://busybox.net/trunk/busybox@5355 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/du.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index 39241a283..2e49b2147 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -37,9 +37,9 @@
37static unsigned long disp_hr = KILOBYTE; 37static unsigned long disp_hr = KILOBYTE;
38#endif 38#endif
39 39
40static int du_depth = 0; 40static int du_depth /*= 0*/;
41static int count_hardlinks = 0; 41static int count_hardlinks /*= 0*/;
42static int one_file_system = 0; 42static int one_file_system /*= 0*/;
43static dev_t dir_dev; 43static dev_t dir_dev;
44 44
45static void (*print) (long, char *); 45static void (*print) (long, char *);
@@ -186,7 +186,7 @@ int du_main(int argc, char **argv)
186 return status; 186 return status;
187} 187}
188 188
189/* $Id: du.c,v 1.54 2002/08/23 03:25:22 bug1 Exp $ */ 189/* $Id: du.c,v 1.55 2002/08/23 07:28:45 aaronl Exp $ */
190/* 190/*
191Local Variables: 191Local Variables:
192c-file-style: "linux" 192c-file-style: "linux"