* libc/string/memset.c (memset): Minor optimization: Use new 'd' variable,
introduced below, everywhere.
This commit is contained in:
@ -103,7 +103,7 @@ _DEFUN (memset, (m, c, n),
|
||||
|
||||
while (n--)
|
||||
{
|
||||
*s++ = (char)c;
|
||||
*s++ = (char)d;
|
||||
}
|
||||
|
||||
return m;
|
||||
|
Reference in New Issue
Block a user