10 lines
132 B
C
10 lines
132 B
C
|
int
|
||
|
rename(from, to)
|
||
|
char *from, *to;
|
||
|
{
|
||
|
(void) unlink(to);
|
||
|
if (link(from, to) < 0) return -1;
|
||
|
(void) unlink(from);
|
||
|
return 0;
|
||
|
}
|