use system memcpy and memset
This commit is contained in:
parent
5201000f39
commit
b2f39d7ddd
5 changed files with 16 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue