diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-20 17:42:00 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-20 17:42:00 +0100 |
commit | fa2162bc77b22fd135fd059219191ac91449b3fa (patch) | |
tree | 07f29c54a32a3b3650917cd22a99184f1aa242e0 /stm/std.h | |
parent | 27fb45eb1c95f9cc02f4ed1b9d573ece0d4c1a18 (diff) | |
download | micropython-fa2162bc77b22fd135fd059219191ac91449b3fa.tar.gz micropython-fa2162bc77b22fd135fd059219191ac91449b3fa.zip |
Integrate new lexer stream with stm framework.
Diffstat (limited to 'stm/std.h')
-rw-r--r-- | stm/std.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -8,6 +8,7 @@ void *calloc(size_t sz, size_t n); void *realloc(void *ptr, size_t n); 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); |