Skip to content
Snippets Groups Projects
Commit e046d433 authored by Bumsik Kim's avatar Bumsik Kim Committed by Sandeep Mistry
Browse files

fixed utoa type conflict

parent b04ddad1
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ extern char* ltoa( long value, char *string, int radix )
return string;
}
extern char* utoa( unsigned long value, char *string, int radix )
extern char* utoa( unsigned int value, char *string, int radix )
{
return ultoa( value, string, radix ) ;
}
......
......@@ -26,7 +26,7 @@ extern "C"{
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* utoa( unsigned int value, char *string, int radix ) ;
extern char* ultoa( unsigned long value, char *string, int radix ) ;
#ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment