mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
6 lines
121 B
C
6 lines
121 B
C
#ifndef __MEMMOVE_H__
|
|
#define __MEMMOVE_H__
|
|
|
|
void *memmove(void *s1, const void *s2, size_t n);
|
|
|
|
#endif // __MEMMOVE_H__
|