mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-27 14:32:55 +00:00
No unix memmove for msvc
This commit is contained in:
parent
36f65fd7c5
commit
16c67b96c2
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ char *basepath( char *fname )
|
||||||
/* memmove is defined here because some vendors don't provide it at
|
/* memmove is defined here because some vendors don't provide it at
|
||||||
all and others do a terrible job (like calling malloc) */
|
all and others do a terrible job (like calling malloc) */
|
||||||
// -- ouch, that hurts -- ln
|
// -- ouch, that hurts -- ln
|
||||||
#ifndef MACOS_X /* always use the system memmove() on Mac OS X. --ryan. */
|
/* always use the system memmove() on Mac OS X. --ryan. */
|
||||||
|
#if !defined(MACOS_X) && !defined(_MSC_VER)
|
||||||
#ifdef memmove
|
#ifdef memmove
|
||||||
#undef memmove
|
#undef memmove
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue