mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-26 11:23:47 +08:00
Make source const.
This commit is contained in:
parent
e677aefec1
commit
91f5d65874
@ -5,7 +5,8 @@
|
||||
|
||||
void
|
||||
memmove (dest, source, length)
|
||||
char *dest, *source;
|
||||
char *dest;
|
||||
const char *source;
|
||||
unsigned length;
|
||||
{
|
||||
if (source < dest)
|
||||
|
Loading…
Reference in New Issue
Block a user