changeset 3842:e8bcf96f1418

* sysdep.c (rename): Make arguments const. autoconf #defines const away on systems which don't have it; any system with prototypes will declare the arguments const (the ones to which I have access do); and systems without prototypes won't notice.
author Jim Blandy <jimb@redhat.com>
date Sat, 19 Jun 1993 21:07:02 +0000
parents 11500459af1d
children 18892e151d53
files src/sysdep.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Sat Jun 19 21:06:18 1993 +0000
+++ b/src/sysdep.c	Sat Jun 19 21:07:02 1993 +0000
@@ -2694,8 +2694,8 @@
 #ifndef HAVE_RENAME
 
 rename (from, to)
-     char *from;
-     char *to;
+     const char *from;
+     const char *to;
 {
   if (access (from, 0) == 0)
     {