summaryrefslogtreecommitdiff
path: root/libiberty/rename.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/rename.c')
-rw-r--r--libiberty/rename.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/libiberty/rename.c b/libiberty/rename.c
deleted file mode 100644
index 2e9dec18fa1..00000000000
--- a/libiberty/rename.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* rename -- rename a file
- This function is in the public domain. */
-
-/* Rename a file. */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-#include <errno.h>
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
-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);
-}