cleanup - remove old cpu_memcpy and cpu_i64FromDouble that are no longer needed

This was SVN commit r8517.
This commit is contained in:
janwas
2010-11-01 11:09:03 +00:00
parent b27d6d38e3
commit 52851faeb6
23 changed files with 38 additions and 82 deletions
+2 -2
View File
@@ -189,7 +189,7 @@ LibError da_read(DynArray* da, void* data, size_t size)
if(da->pos+size > da->cur_size)
WARN_RETURN(ERR::FAIL);
cpu_memcpy(data, da->base+da->pos, size);
memcpy(data, da->base+da->pos, size);
da->pos += size;
return INFO::OK;
}
@@ -198,7 +198,7 @@ LibError da_read(DynArray* da, void* data, size_t size)
LibError da_append(DynArray* da, const void* data, size_t size)
{
RETURN_ERR(da_reserve(da, size));
cpu_memcpy(da->base+da->pos, data, size);
memcpy(da->base+da->pos, data, size);
da->pos += size;
return INFO::OK;
}