Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
2192824a
Commit
2192824a
authored
Apr 05, 2015
by
Paul Sokolovsky
Browse files
teensy: Fix function prototype.
parent
3a84c8b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
teensy/std.h
View file @
2192824a
...
...
@@ -10,7 +10,7 @@ void *memcpy(void *dest, const void *src, size_t n);
void
*
memmove
(
void
*
dest
,
const
void
*
src
,
size_t
n
);
void
*
memset
(
void
*
s
,
int
c
,
size_t
n
);
in
t
strlen
(
const
char
*
str
);
size_
t
strlen
(
const
char
*
str
);
int
strcmp
(
const
char
*
s1
,
const
char
*
s2
);
int
strncmp
(
const
char
*
s1
,
const
char
*
s2
,
size_t
n
);
char
*
strcpy
(
char
*
dest
,
const
char
*
src
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment