Closed
Description
Hello
In hardware/arduino/sam/cores/arduino/itoa.h
utoa is declared as follow:
extern char* utoa( unsigned long value, char *string, int radix ) ;
in a gcc 4.9.3 for arm distribution, it conflicts with the declaration of the built-in utoa:
char * _EXFUN(__utoa,(unsigned, char *, int));
(_EXFUN is defined as follow #define _EXFUN(name, proto) __cdecl name proto
)