diff --git a/include/errno.h b/include/errno.h
index 39426818e0c6215aa91b286c8c26906e468dac0a..15ece2f97f36e067c3b1327722fa4f74ec38e29a 100644
--- a/include/errno.h
+++ b/include/errno.h
@@ -15,5 +15,10 @@ extern int errno;
 
 #ifdef CONFIG_ERRNO_STR
 const char *errno_str(int errno);
+#else
+static inline const char *errno_str(int errno)
+{
+	return 0;
+}
 #endif
 #endif /* _ERRNO_H */