mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-06-07 08:14:48 +00:00
9 lines
138 B
C
9 lines
138 B
C
#ifndef __MEMCPY_H__
|
|
#define __MEMCPY_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
void *memcpy(void *s1, const void *s2, size_t n);
|
|
|
|
#endif // __MEMCPY_H__
|