summaryrefslogtreecommitdiffstatshomepage
path: root/stm/std.h
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-20 17:42:00 +0100
committerDamien <damien.p.george@gmail.com>2013-10-20 17:42:00 +0100
commitfa2162bc77b22fd135fd059219191ac91449b3fa (patch)
tree07f29c54a32a3b3650917cd22a99184f1aa242e0 /stm/std.h
parent27fb45eb1c95f9cc02f4ed1b9d573ece0d4c1a18 (diff)
downloadmicropython-fa2162bc77b22fd135fd059219191ac91449b3fa.tar.gz
micropython-fa2162bc77b22fd135fd059219191ac91449b3fa.zip
Integrate new lexer stream with stm framework.
Diffstat (limited to 'stm/std.h')
-rw-r--r--stm/std.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stm/std.h b/stm/std.h
index 4b370ef28b..2204363660 100644
--- a/stm/std.h
+++ b/stm/std.h
@@ -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);