diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-04 10:34:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-04 10:34:59 +0000 |
commit | a2b9cb05b780044b7cf44500d65498f698f02ee2 (patch) | |
tree | 14ea6d87346f771cf18dde37c6cf3d7a93914270 | |
parent | a6b5021004ec2550c2c59575a5fd04f05a7407b1 (diff) | |
download | coreutils-a2b9cb05b780044b7cf44500d65498f698f02ee2.tar.xz |
Remove use of PARAMS.
-rw-r--r-- | src/chown-core.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chown-core.h b/src/chown-core.h index 1da12a79c..0e2a17e9b 100644 --- a/src/chown-core.h +++ b/src/chown-core.h @@ -1,5 +1,5 @@ /* chown-core.h -- types and prototypes shared by chown and chgrp. - Copyright (C) 2000 Free Software Foundation. + Copyright (C) 2000, 2003 Free Software Foundation. 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 @@ -81,9 +81,9 @@ char * uid_to_name (uid_t); int -change_file_owner PARAMS ((int, const char *, - uid_t, gid_t, - uid_t, gid_t, - struct Chown_option const *)); +change_file_owner (int, const char *, + uid_t, gid_t, + uid_t, gid_t, + struct Chown_option const *); #endif /* CHOWN_CORE_H */ |