diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index f24a38109..893a9f07f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -198,12 +198,12 @@ struct sysinfo { | |||
198 | }; | 198 | }; |
199 | extern int sysinfo (struct sysinfo* info); | 199 | extern int sysinfo (struct sysinfo* info); |
200 | 200 | ||
201 | const char *make_human_readable_str(unsigned long val, unsigned long not_hr); | ||
202 | enum { | 201 | enum { |
203 | KILOBYTE = 1024, | 202 | KILOBYTE = 1024, |
204 | MEGABYTE = (KILOBYTE*1024), | 203 | MEGABYTE = (KILOBYTE*1024), |
205 | GIGABYTE = (MEGABYTE*1024) | 204 | GIGABYTE = (MEGABYTE*1024) |
206 | }; | 205 | }; |
206 | const char *make_human_readable_str(unsigned long size, unsigned long block_size, unsigned long display_unit); | ||
207 | 207 | ||
208 | int ask_confirmation(void); | 208 | int ask_confirmation(void); |
209 | int klogctl(int type, char * b, int len); | 209 | int klogctl(int type, char * b, int len); |