summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-05-30 07:33:16 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-05-30 07:33:16 +0000
commit003510fda2cc7c2f506e4e81801136dfc437fa02 (patch)
tree2964399f6ad26f999fe6391e35a9f2749d6e5ffc /src/install.c
parentdb3e479ab35ce353114254538cc2fb7f8ede11d2 (diff)
downloadcoreutils-003510fda2cc7c2f506e4e81801136dfc437fa02.tar.xz
(getpwnam, getgrnam): Remove decl.
(getuid, getgid) [!defined _POSIX_VERSION]: Remove decls.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/install.c b/src/install.c
index 93059b49a..28bba8a39 100644
--- a/src/install.c
+++ b/src/install.c
@@ -1,5 +1,5 @@
/* install - copy files and set attributes
- Copyright (C) 89, 90, 91, 1995-2004 Free Software Foundation, Inc.
+ Copyright (C) 89, 90, 91, 1995-2005 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
@@ -47,14 +47,6 @@
# include <sys/wait.h>
#endif
-struct passwd *getpwnam ();
-struct group *getgrnam ();
-
-#ifndef _POSIX_VERSION
-uid_t getuid ();
-gid_t getgid ();
-#endif
-
#if ! HAVE_ENDGRENT
# define endgrent() ((void) 0)
#endif