Switch to side-by-side view

--- a/src/utils/smallut.h
+++ b/src/utils/smallut.h
@@ -19,6 +19,7 @@
 #define _SMALLUT_H_INCLUDED_
 
 #include <sys/types.h>
+#include <stdint.h>
 
 #include <string>
 #include <vector>
@@ -162,13 +163,13 @@
 extern std::string truncate_to_word(const std::string& input,
                                     std::string::size_type maxlen);
 
-void ulltodecstr(unsigned long long val, std::string& buf);
-void lltodecstr(long long val, std::string& buf);
-std::string lltodecstr(long long val);
-std::string ulltodecstr(unsigned long long val);
+void ulltodecstr(uint64_t val, std::string& buf);
+void lltodecstr(int64_t val, std::string& buf);
+std::string lltodecstr(int64_t val);
+std::string ulltodecstr(uint64_t val);
 
 /** Convert byte count into unit (KB/MB...) appropriate for display */
-std::string displayableBytes(off_t size);
+std::string displayableBytes(int64_t size);
 
 /** Break big string into lines */
 std::string breakIntoLines(const std::string& in, unsigned int ll = 100,