summaryrefslogtreecommitdiff
path: root/src/who.c
diff options
context:
space:
mode:
authorGeorge Burgess IV <gbiv@chromium.org>2016-09-09 23:43:19 -0700
committerPádraig Brady <P@draigBrady.com>2016-09-11 12:46:02 +0100
commite0953783024a113b186547aca186777f9ce3b798 (patch)
tree89e12f2dc9d0df753dda7c30a26d84adc51130e2 /src/who.c
parent677ae07083f41754fc9d3c7a0559248063908e30 (diff)
downloadcoreutils-e0953783024a113b186547aca186777f9ce3b798.tar.xz
pinky,who: remove redeclarations of ttyname
Given that `ttyname` is already conditionally declared in src/system.h, other declarations are redundant and problematic for example in ChromeOS which has a new FORTIFY implementation that, as an artifact of how it's implemented, causes the compiler to complain if certain standard library functions are redeclared without special compiler-specific attributes. * src/pinky.c: Remove declaration (which was unused anyway). * src/who.c: Remove declaration. * src/system.h (getlogin, getuid, geteuid, getgrgid, getpwuid, ttyname): Add the parameter type to the declarations to avoid warnings when these backup declarations are used.
Diffstat (limited to 'src/who.c')
-rw-r--r--src/who.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/who.c b/src/who.c
index c6fc4dc4b..f56c71833 100644
--- a/src/who.c
+++ b/src/who.c
@@ -96,8 +96,6 @@
# define UT_ID(U) "??"
#endif
-char *ttyname (int);
-
/* If true, attempt to canonicalize hostnames via a DNS lookup. */
static bool do_lookup;