summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-11-10 14:45:31 +0000
committerJim Meyering <jim@meyering.net>1995-11-10 14:45:31 +0000
commitda6d91f64b58241634e2842a9c7b236bfcd48a64 (patch)
treeb86bdb02232d06688069608e53ef54ea6a99c232 /src/install.c
parentc6ca8a1528a5f0d9e15a91f1d0f48369f9f40129 (diff)
downloadcoreutils-da6d91f64b58241634e2842a9c7b236bfcd48a64.tar.xz
Don't protoize dcls of getpwnam and getgrnam.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c
index 1dd7ed9a6..2af799dad 100644
--- a/src/install.c
+++ b/src/install.c
@@ -69,8 +69,8 @@
#include <sys/wait.h>
#endif
-struct passwd *getpwnam (const char *);
-struct group *getgrnam (const char *);
+struct passwd *getpwnam ();
+struct group *getgrnam ();
#ifndef _POSIX_VERSION
uid_t getuid ();