use system memcpy and memset

This commit is contained in:
Ludwig Nussel 2005-11-06 18:22:49 +00:00
parent 5201000f39
commit b2f39d7ddd
5 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,4 @@
#if 0 // not used anymore
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
@ -29,3 +30,4 @@ void Com_Memcpy (void* dest, const void* src, const size_t count) {
void Com_Memset (void* dest, const int val, const size_t count) {
memset(dest, val, count);
}
#endif

View File

@ -2824,9 +2824,7 @@ void Com_Shutdown (void) {
}
#if !( defined __GNUC__ ) // GNU versions in linux_common.c
#if !id386
#if I_WANT_A_CUSTOM_MEMCPY && !defined(_WIN32)
void Com_Memcpy (void* dest, const void* src, const size_t count)
{
memcpy(dest, src, count);
@ -2837,7 +2835,7 @@ void Com_Memset (void* dest, const int val, const size_t count)
memset(dest, val, count);
}
#else
#elif I_WANT_A_CUSTOM_MEMCPY && defined(_WIN32)
typedef enum
{
@ -3136,7 +3134,6 @@ skipClamp:
}
}
#endif
#endif
//------------------------------------------------------------------------

View File

@ -38,8 +38,13 @@ void MD4Init (MD4_CTX *);
void MD4Update (MD4_CTX *, const unsigned char *, unsigned int);
void MD4Final (unsigned char [16], MD4_CTX *);
#if I_WANT_A_CUSTOM_MEMCPY
void Com_Memset (void* dest, const int val, const size_t count);
void Com_Memcpy (void* dest, const void* src, const size_t count);
#else
#define Com_Memset memset
#define Com_Memcpy memcpy
#endif
/* MD4C.C - RSA Data Security, Inc., MD4 message-digest algorithm */
/* Copyright (C) 1990-2, RSA Data Security, Inc. All rights reserved.

View File

@ -237,8 +237,13 @@ void Snd_Memset (void* dest, const int val, const size_t count);
#define Snd_Memset Com_Memset
#endif
#if I_WANT_A_CUSTOM_MEMCPY
void Com_Memset (void* dest, const int val, const size_t count);
void Com_Memcpy (void* dest, const void* src, const size_t count);
#else
#define Com_Memset memset
#define Com_Memcpy memcpy
#endif
#define CIN_system 1
#define CIN_loop 2

View File

@ -1,3 +1,4 @@
#if 0 // not used anymore
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
@ -342,3 +343,4 @@ void Com_Prefetch (const void *s, const unsigned int bytes, e_prefetch type)
}
#endif
#endif