- Moved hlt() to it's own header.
[coreboot.git] / src / include / string.h
index cf9bbb14d245c46c2fea14f67711ce07360310b3..111e23bc15064f5a23d8319615ca289855177400 100644 (file)
@@ -29,6 +29,7 @@ static inline size_t strlen(const char *src)
 }
 
 extern void *memcpy(void *dest, const void *src, size_t n);
+extern void *memmove(void *dest, 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 n);