Import TRK 2.6
This commit is contained in:
parent
3e3b4ac2b1
commit
0de51f3ffa
82 changed files with 7987 additions and 14 deletions
17
include/PowerPC_EABI_Support/Runtime/__mem.h
Normal file
17
include/PowerPC_EABI_Support/Runtime/__mem.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef _RUNTIME_MEM_H
|
||||
#define _RUNTIME_MEM_H
|
||||
|
||||
#include "stddef.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
__declspec(section ".init") void* memcpy(void* dest, const void* src, size_t n);
|
||||
__declspec(section ".init") void* memset(void* dest, int val, size_t count);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue