aboutsummaryrefslogtreecommitdiffstats
path: root/code/macosx
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-06 18:22:49 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-06 18:22:49 +0000
commit085e14dff1f8e76a7c7ae2afc74d04d3675736a6 (patch)
treeef42504c50e500c920593be5eb5ad8fd9a22aebf /code/macosx
parented460fe3673ae043ad58d9afd76b989e73935236 (diff)
downloadioquake3-aero-085e14dff1f8e76a7c7ae2afc74d04d3675736a6.tar.gz
ioquake3-aero-085e14dff1f8e76a7c7ae2afc74d04d3675736a6.zip
use system memcpy and memset
git-svn-id: svn://svn.icculus.org/quake3/trunk@301 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/macosx')
-rw-r--r--code/macosx/macosx_common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/code/macosx/macosx_common.c b/code/macosx/macosx_common.c
index ab7d3be..1d42d90 100644
--- a/code/macosx/macosx_common.c
+++ b/code/macosx/macosx_common.c
@@ -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