diff options
Diffstat (limited to 'libiberty/rename.c')
-rwxr-xr-x | libiberty/rename.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libiberty/rename.c b/libiberty/rename.c deleted file mode 100755 index ae26e2d..0000000 --- a/libiberty/rename.c +++ /dev/null @@ -1,22 +0,0 @@ -/* 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); -} |