0ad/source/lib/sysdep/ia32/ia32_memcpy.h
janwas 623e649acb # big refactoring in CPU-specific code, fix for dual core vs. HT detection
all cpu-related stuff is now defined in cpu.h (with cpu_ prefix and
fully encapsulated). fix quite brittle core/HT unit/package detection.
implement mkdir on VC8, where it is deprecated
add strdup on MacOSX
move ia32 code into separate subdir. functions implemented in asm are
called ia32_asm_*.
add some unix versions of sysdep functions (cannot test them)
timer: fix for amd64 linux

This was SVN commit r4995.
2007-04-25 18:19:35 +00:00

16 lines
312 B
C

#ifndef INCLUDED_IA32_MEMCPY
#define INCLUDED_IA32_MEMCPY
#include "lib/sysdep/sysdep.h"
extern "C" {
extern void ia32_memcpy_init();
#define RESTRICT __restrict
extern void* ia32_memcpy(void* RESTRICT dst, const void* RESTRICT src, size_t nbytes);
}
#endif // #ifndef INCLUDED_IA32_MEMCPY