]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/rename.c
accross.m4 (AC_C_BIGENDIAN_CROSS): Compile endian probe with "-c".
[thirdparty/gcc.git] / libiberty / rename.c
CommitLineData
6599da04
JM
1/* rename -- rename a file
2 This function is in the public domain. */
3
aaa5f039
DD
4/*
5
6@deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new})
7
8Renames a file from @var{old} to @var{new}. If @var{new} already
9exists, it is removed.
10
11@end deftypefn
12
13*/
6599da04 14
c9ac9147 15#include "ansidecl.h"
c2f275e4
RB
16#ifdef HAVE_CONFIG_H
17#include "config.h"
18#endif
6599da04 19#include <errno.h>
c2f275e4
RB
20#ifdef HAVE_UNISTD_H
21#include <unistd.h>
22#endif
6599da04
JM
23
24int
25rename (zfrom, zto)
c9ac9147
KG
26 const char *zfrom;
27 const char *zto;
6599da04
JM
28{
29 if (link (zfrom, zto) < 0)
30 {
31 if (errno != EEXIST)
32 return -1;
33 if (unlink (zto) < 0
34 || link (zfrom, zto) < 0)
35 return -1;
36 }
37 return unlink (zfrom);
38}