Index: uspace/app/bithenge/linux/os.h
===================================================================
--- uspace/app/bithenge/linux/os.h	(revision 03b2b2c641e73ecbc2828da79253cb7dd68e6062)
+++ uspace/app/bithenge/linux/os.h	(revision ae49252801c1a0f674c37b842fb549ad0c6f5f8d)
@@ -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
