diff options
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/util.h b/include/util.h index 9554605..f77e226 100644 --- a/include/util.h +++ b/include/util.h @@ -1,8 +1,10 @@ #ifndef LIB_H #define LIB_H +#include <stddef.h> + void die(const char *message); -char *formatBytes(unsigned bytes, float *rounded); +char *formatBytes(size_t bytes, float *rounded); -int intlen(unsigned i); +int intlen(size_t i); #endif |