Fix compilation with gcc arm version 5

This commit is contained in:
Daniel Fekete 2017-04-11 19:10:31 +02:00
parent 80fdd2ab6a
commit 4e8672871b
1 changed files with 6 additions and 1 deletions

View File

@ -28,10 +28,15 @@ extern "C"{
extern void itoa( int n, char s[] ) ;
#else
#if __GNUC__ < 5
extern char* utoa( unsigned long value, char *string, int radix ) ;
#endif
extern char* itoa( int value, char *string, int radix ) ;
extern char* ltoa( long value, char *string, int radix ) ;
extern char* utoa( unsigned long value, char *string, int radix ) ;
extern char* ultoa( unsigned long value, char *string, int radix ) ;
#endif /* 0 */