diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-06 21:01:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-06 21:01:52 +0000 |
commit | c8023d768a48ffd45eacaa512b0a15af2135755b (patch) | |
tree | 12dfbb0e833f173e40ace0db6e15e7507f1a8272 /lib | |
parent | 63c87fccb3ad6829b030d0d4b87ae2f07316c803 (diff) | |
download | coreutils-c8023d768a48ffd45eacaa512b0a15af2135755b.tar.xz |
#undef rename before defining rpl_rename.
[HAVE_CONFIG_H]: Guard inclusion of config.h.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rename.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/rename.c b/lib/rename.c index 70ff13018..4a4c165b2 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,7 +19,11 @@ /* written by Volker Borchert */ -#include <config.h> +#if HAVE_CONFIG_H +# include <config.h> +#endif +#undef rename + #include <stdio.h> #if HAVE_STDLIB_H # include <stdlib.h> |