Remove _mesa_memcpy in favor of plain memcpy.
This may break the SUNOS4 build, but it's no longer relevant.
This commit is contained in:

committed by
Kristian Høgsberg

parent
60b0cae412
commit
c7ac486261
@@ -223,7 +223,7 @@ _mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
|
||||
p++;
|
||||
len = p - lineStart;
|
||||
s = (GLubyte *) _mesa_malloc(len + 1);
|
||||
_mesa_memcpy(s, lineStart, len);
|
||||
memcpy(s, lineStart, len);
|
||||
s[len] = 0;
|
||||
|
||||
return s;
|
||||
|
Reference in New Issue
Block a user