diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-05 22:15:37 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-05 22:15:37 +0300 |
commit | 2192824ad876dfc1376791c7fa9ac8650a74c11e (patch) | |
tree | f41e947c3306249cdafdc24d9129033f949391e6 /teensy | |
parent | 3a84c8b58d7c87785bf1ae48eb41c91ecde9fc1c (diff) | |
download | micropython-2192824ad876dfc1376791c7fa9ac8650a74c11e.tar.gz micropython-2192824ad876dfc1376791c7fa9ac8650a74c11e.zip |
teensy: Fix function prototype.
Diffstat (limited to 'teensy')
-rw-r--r-- | teensy/std.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/std.h b/teensy/std.h index 7003e7be0b..42791877a3 100644 --- a/teensy/std.h +++ b/teensy/std.h @@ -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); -int 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); |