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