add memmove() function prototype

This commit is contained in:
Markus Fröschle
2016-11-20 15:22:25 +00:00
parent 8ecad8538e
commit 8e91265e42

View File

@@ -34,6 +34,7 @@ extern char *strcat(char *dst, const char *src);
extern char *strncat(char *dst, const char *src, size_t max);
extern int atoi(const char *c);
extern void *memcpy(void *dst, const void *src, size_t n);
extern void *memmove(void *dst, const void *src, size_t n);
extern void *memset(void *s, int c, size_t n);
extern int memcmp(const void *s1, const void *s2, size_t max);
extern void bzero(void *s, size_t n);