X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Frename.c;h=6ff0705323438851927090b6616fa91730012645;hb=2234a524956f7a24cd5d1396f0773d0583a5cca9;hp=70ff13018ba5aeacfb58befe6c49b917e355e3bd;hpb=f90389a769861bdfeeed82dbbc71169017f2b56b;p=gnulib.git diff --git a/lib/rename.c b/lib/rename.c index 70ff13018..6ff070532 100644 --- a/lib/rename.c +++ b/lib/rename.c @@ -1,7 +1,7 @@ /* Work around the bug in some systems whereby rename fails when the source path has a trailing slash. The rename functions of SunOS 4.1.1_U1 and mips-dec-ultrix4.4 have this bug. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,28 +19,18 @@ /* written by Volker Borchert */ -#include -#include -#if HAVE_STDLIB_H -# include +#if HAVE_CONFIG_H +# include #endif +#undef rename -#if HAVE_STRING_H -# include -#else -# include -#endif +#include +#include +#include #include "dirname.h" #include "xalloc.h" -#ifndef HAVE_DECL_FREE -"this configure-time declaration test was not run" -#endif -#if !HAVE_DECL_FREE -void free (); -#endif - /* Rename the file SRC_PATH to DST_PATH, removing any trailing slashes from SRC_PATH. Needed for SunOS 4.1.1_U1. */