Remove _mesa_memset in favor of plain memset.

This may break the SUNOS4 build, but it's no longer relevant.
This commit is contained in:
Kenneth Graunke
2010-02-18 23:51:00 -08:00
committed by Kristian Høgsberg
parent c7ac486261
commit 26f8fad145
23 changed files with 26 additions and 46 deletions

View File

@@ -809,7 +809,7 @@ _mesa_find_used_registers(const struct gl_program *prog,
{
GLuint i, j;
_mesa_memset(used, 0, usedSize);
memset(used, 0, usedSize);
for (i = 0; i < prog->NumInstructions; i++) {
const struct prog_instruction *inst = prog->Instructions + i;