diff --git a/apps/webbrowser/www.c b/apps/webbrowser/www.c index 0f1be0ee8..f72dfcbfe 100644 --- a/apps/webbrowser/www.c +++ b/apps/webbrowser/www.c @@ -52,6 +52,8 @@ #include "www.h" +/* Explicitly declare itoa as it is non-standard and not necessarily in stdlib.h */ +char *itoa(int value, char *str, int base); /* The array that holds the current URL. */ static char url[WWW_CONF_MAX_URLLEN + 1];