blob: f26801663865d0c9376fe70bb86d4612d1a861ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _MWCPLUSLIB
#define _MWCPLUSLIB
#include <types.h>
#ifdef __cplusplus
extern "C" {
#endif
void* __copy(char* to, char* from, size_t size);
#ifdef __cplusplus
}
#endif
#endif
|