From 6d0921cc0bb01b1d090285c487f8c1120dfa5d3a Mon Sep 17 00:00:00 2001 From: Richard June Date: Mon, 22 Jan 2001 22:35:38 +0000 Subject: Add HUMAN_READABLE define for -m and -h support in du, df, and ls Add support for -k in du, df, and ls(no define, it's for compatibliity with the GNU utils as bb does -k by default) Fix bug #1084 --- include/busybox.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include') diff --git a/include/busybox.h b/include/busybox.h index a89ac3694..018c636cf 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -259,4 +259,11 @@ extern int sysinfo (struct sysinfo* info); #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0) #endif +#ifdef BB_FEATURE_HUMAN_READABLE +char *format(unsigned long val, unsigned long hr); +#define KILOBYTE 1024 +#define MEGABYTE (KILOBYTE*1024) +#define GIGABYTE (MEGABYTE*1024) +#endif + #endif /* _BB_INTERNAL_H_ */ -- cgit v1.2.3