changeset 1366:645e6fea2fce

*** empty log message ***
author Jim Meyering <jim@meyering.net>
date Tue, 19 May 1998 15:15:09 +0000
parents 8a51920b9a22
children 058bc3da5a1c
files lib/lchown.c
diffstat 1 files changed, 1 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lib/lchown.c
+++ b/lib/lchown.c
@@ -19,11 +19,6 @@
 
 #include <config.h>
 
-/* Disable the definition of lchown to rpl_lchown (from config.h) in this
-   file.  Otherwise, we'd get conflicting prototypes for rpl_lchown on
-   most systems.  */
-#undef lchown
-
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <errno.h>
@@ -35,7 +30,7 @@
    In that case, set errno to ENOSYS and return -1.  */
 
 int
-rpl_lchown (const chat *file, uid_t uid, gid_t gid)
+lchown (const chat *file, uid_t uid, gid_t gid)
 {
   struct stat stats;