aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-01 18:51:33 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-01 18:51:33 +0000
commit60aaeabf20ac0e0277f4b9e7fa87fe9d78ffb379 (patch)
tree3f5c1fc4e2dfb7967d02b56b23e7b9d801823653
parent5f7efd22de3c3a3d97366aca8c4a4c523fa742b1 (diff)
downloadbusybox-w32-60aaeabf20ac0e0277f4b9e7fa87fe9d78ffb379.tar.gz
busybox-w32-60aaeabf20ac0e0277f4b9e7fa87fe9d78ffb379.tar.bz2
busybox-w32-60aaeabf20ac0e0277f4b9e7fa87fe9d78ffb379.zip
Applied patch from David Douthitt to fix build error in df.c when
BB_FEATURE_HUMAN_READABLE was disabled. git-svn-id: svn://busybox.net/trunk/busybox@1949 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--busybox.h2
-rw-r--r--include/busybox.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/busybox.h b/busybox.h
index 53d22115a..99932095b 100644
--- a/busybox.h
+++ b/busybox.h
@@ -234,10 +234,10 @@ extern int sysinfo (struct sysinfo* info);
234 234
235#ifdef BB_FEATURE_HUMAN_READABLE 235#ifdef BB_FEATURE_HUMAN_READABLE
236const char *format(unsigned long val, unsigned long hr); 236const char *format(unsigned long val, unsigned long hr);
237#endif
237#define KILOBYTE 1024 238#define KILOBYTE 1024
238#define MEGABYTE (KILOBYTE*1024) 239#define MEGABYTE (KILOBYTE*1024)
239#define GIGABYTE (MEGABYTE*1024) 240#define GIGABYTE (MEGABYTE*1024)
240#endif
241 241
242#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK 242#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
243#define RESERVE_BB_BUFFER(buffer,len) char buffer[len] 243#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]
diff --git a/include/busybox.h b/include/busybox.h
index 53d22115a..99932095b 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -234,10 +234,10 @@ extern int sysinfo (struct sysinfo* info);
234 234
235#ifdef BB_FEATURE_HUMAN_READABLE 235#ifdef BB_FEATURE_HUMAN_READABLE
236const char *format(unsigned long val, unsigned long hr); 236const char *format(unsigned long val, unsigned long hr);
237#endif
237#define KILOBYTE 1024 238#define KILOBYTE 1024
238#define MEGABYTE (KILOBYTE*1024) 239#define MEGABYTE (KILOBYTE*1024)
239#define GIGABYTE (MEGABYTE*1024) 240#define GIGABYTE (MEGABYTE*1024)
240#endif
241 241
242#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK 242#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
243#define RESERVE_BB_BUFFER(buffer,len) char buffer[len] 243#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]