From b5141f165c1a2d2252ccc1edc4714323c0b72b9f Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Tue, 10 Nov 2015 14:37:44 +0100 Subject: [PATCH] www.c: Explicitly declare itoa as it is non-standard and not necessarily in stdlib.h --- apps/webbrowser/www.c | 2 ++ 1 file changed, 2 insertions(+) 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];