Changeset 609 for branches/GNU/src/binutils/libiberty/rename.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/rename.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 2 2 This function is in the public domain. */ 3 3 4 /* Rename a file. */4 /* 5 5 6 @deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new}) 7 8 Renames a file from @var{old} to @var{new}. If @var{new} already 9 exists, it is removed. 10 11 @end deftypefn 12 13 */ 14 15 #include "ansidecl.h" 6 16 #ifdef HAVE_CONFIG_H 7 17 #include "config.h" … … 14 24 int 15 25 rename (zfrom, zto) 16 c har *zfrom;17 c har *zto;26 const char *zfrom; 27 const char *zto; 18 28 { 19 29 if (link (zfrom, zto) < 0) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.