#ifndef __MEMMOVE_H__
#define __MEMMOVE_H__

void *memmove(void *s1, const void *s2, size_t n);

#endif // __MEMMOVE_H__