mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 04:48:37 +01:00
9ea2a99edb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15071 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
351 B
C
23 lines
351 B
C
/* rename -- rename a file
|
|
This function is in the public domain. */
|
|
|
|
/* Rename a file. */
|
|
|
|
#include <errno.h>
|
|
|
|
int
|
|
rename (zfrom, zto)
|
|
char *zfrom;
|
|
char *zto;
|
|
{
|
|
if (link (zfrom, zto) < 0)
|
|
{
|
|
if (errno != EEXIST)
|
|
return -1;
|
|
if (unlink (zto) < 0
|
|
|| link (zfrom, zto) < 0)
|
|
return -1;
|
|
}
|
|
return unlink (zfrom);
|
|
}
|