Add print_human_readable_size() function.
[pintos-anon] / src / lib / stdio.h
index 31be6d8353df7df90e3bde34c6860d1c6c24ad1b..dc6ec3595d15243b841dcbf06360fb8bb9e34aaa 100644 (file)
@@ -28,6 +28,7 @@ int hprintf (int, const char *, ...) PRINTF_FORMAT (2, 3);
 int vhprintf (int, const char *, va_list) PRINTF_FORMAT (2, 0);
 #endif
 void hex_dump (uintptr_t ofs, const void *, size_t size, bool ascii);
+void print_human_readable_size (uint64_t size);
 
 /* Internal functions. */
 void __vprintf (const char *format, va_list args,