Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Arduino Core for SAMD21 CPU
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
josc941e
Arduino Core for SAMD21 CPU
Commits
e046d433
Commit
e046d433
authored
8 years ago
by
Bumsik Kim
Committed by
Sandeep Mistry
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fixed utoa type conflict
parent
b04ddad1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cores/arduino/itoa.c
+1
-1
1 addition, 1 deletion
cores/arduino/itoa.c
cores/arduino/itoa.h
+1
-1
1 addition, 1 deletion
cores/arduino/itoa.h
with
2 additions
and
2 deletions
cores/arduino/itoa.c
+
1
−
1
View file @
e046d433
...
...
@@ -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
)
;
}
...
...
This diff is collapsed.
Click to expand it.
cores/arduino/itoa.h
+
1
−
1
View file @
e046d433
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment