mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 07:20:32 +00:00
8 lines
138 B
C
8 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__
|