Index: uspace/lib/c/generic/inet/host.c
===================================================================
--- uspace/lib/c/generic/inet/host.c	(revision a53ed3a8097360ccf174e8d94fb407db919eb66a)
+++ uspace/lib/c/generic/inet/host.c	(revision 84a1a546f62a2ba0f913f8f1bfce8d4bc68d7aa4)
@@ -54,5 +54,5 @@
  *         extra characters at the end. ENOMEM if out of memory
  */
-errno_t inet_host_parse(const char *str, inet_host_t **rhost,
+int inet_host_parse(const char *str, inet_host_t **rhost,
     char **endptr)
 {
@@ -61,5 +61,5 @@
 	char *name;
 	char *aend;
-	errno_t rc;
+	int rc;
 
 	host = calloc(1, sizeof(inet_host_t));
@@ -106,7 +106,7 @@
  * @return EOK on success, ENOMEM if out of memory
  */
-errno_t inet_host_format(inet_host_t *host, char **rstr)
-{
-	errno_t rc;
+int inet_host_format(inet_host_t *host, char **rstr)
+{
+	int rc;
 	char *str = NULL;
 
@@ -161,8 +161,8 @@
  * @reutrn EOK on success, ENOENT on resolurion failure
  */
-errno_t inet_host_lookup_one(inet_host_t *host, ip_ver_t version, inet_addr_t *addr)
+int inet_host_lookup_one(inet_host_t *host, ip_ver_t version, inet_addr_t *addr)
 {
 	dnsr_hostinfo_t *hinfo = NULL;
-	errno_t rc;
+	int rc;
 
 	switch (host->hform) {
@@ -201,10 +201,10 @@
  *         ENOMEM if out of memory
  */
-errno_t inet_host_plookup_one(const char *str, ip_ver_t version, inet_addr_t *addr,
+int inet_host_plookup_one(const char *str, ip_ver_t version, inet_addr_t *addr,
     char **endptr, const char **errmsg)
 {
 	inet_host_t *host = NULL;
 	char *eptr;
-	errno_t rc;
+	int rc;
 
 	rc = inet_host_parse(str, &host, endptr != NULL ? &eptr : NULL);
