x86: consistently convert to byte registers for TEST w/ imm optimization
[deliverable/binutils-gdb.git] / libiberty / rename.c
index 2e9dec18fa1d38c50fbaaf5956bbcb9e24192d50..ad342ffca65c59479667d11b77ba2ac8e52ee58a 100644 (file)
@@ -1,8 +1,18 @@
 /* rename -- rename a file
    This function is in the public domain. */
 
-/* Rename a file.  */
+/*
 
+@deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new})
+
+Renames a file from @var{old} to @var{new}.  If @var{new} already
+exists, it is removed.
+
+@end deftypefn
+
+*/
+
+#include "ansidecl.h"
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
@@ -12,9 +22,7 @@
 #endif
 
 int
-rename (zfrom, zto)
-     char *zfrom;
-     char *zto;
+rename (const char *zfrom, const char *zto)
 {
   if (link (zfrom, zto) < 0)
     {
This page took 0.024747 seconds and 4 git commands to generate.