diff --git a/src/include/lwip/err.h b/src/include/lwip/err.h index cad360a8..97a7ab85 100644 --- a/src/include/lwip/err.h +++ b/src/include/lwip/err.h @@ -43,6 +43,12 @@ extern "C" { #endif +/** + * @defgroup infrastructure_errors Error codes + * @ingroup infrastructure + * @{ + */ + /** Define LWIP_ERR_T in cc.h if you want to use * a different type for your platform (must be signed). */ #ifdef LWIP_ERR_T @@ -90,6 +96,10 @@ typedef s8_t err_t; /** Illegal argument. */ #define ERR_ARG -16 +/** + * @} + */ + #ifdef LWIP_DEBUG extern const char *lwip_strerr(err_t err); #else