Index: uspace/app/bithenge/linux/os.h
===================================================================
--- uspace/app/bithenge/linux/os.h	(revision 03b2b2c641e73ecbc2828da79253cb7dd68e6062)
+++ uspace/app/bithenge/linux/os.h	(revision 02dcb2085d47504d22fe5a936480699f8a2ccbe8)
@@ -85,4 +85,9 @@
 }
 
+static inline char *str_dup(const char *s)
+{
+	return strdup(s);
+}
+
 static inline char *str_ndup(const char *s, size_t max_len)
 {
@@ -100,3 +105,8 @@
 }
 
+static inline uint32_t uint32_t_be2host(uint32_t val)
+{
+	return be32toh(val);
+}
+
 #endif
