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:

committed by
Kristian Høgsberg

parent
c7ac486261
commit
26f8fad145
@@ -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;
|
||||
|
Reference in New Issue
Block a user