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