diff options
author | dt <dt@FreeBSD.org> | 1999-02-14 22:22:54 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-02-14 22:22:54 +0000 |
commit | d17e2b06434886c1783ba63ef7535a4b906e6a10 (patch) | |
tree | 1553a3304353ed486f95396eb3898a70e1b2c5e3 /usr.bin/talk | |
parent | 76fbb6ae0ff2c452013d072613cd0fd6777df4eb (diff) | |
download | FreeBSD-src-d17e2b06434886c1783ba63ef7535a4b906e6a10.zip FreeBSD-src-d17e2b06434886c1783ba63ef7535a4b906e6a10.tar.gz |
Remove couple of 'extern int errno'. (They turned to something funny when
<errno.h> included).
Diffstat (limited to 'usr.bin/talk')
-rw-r--r-- | usr.bin/talk/io.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/talk/io.c b/usr.bin/talk/io.c index fc3dc54..4770d5b 100644 --- a/usr.bin/talk/io.c +++ b/usr.bin/talk/io.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: io.c,v 1.6 1998/01/14 07:21:10 charnier Exp $"; #endif /* not lint */ /* @@ -111,9 +111,6 @@ talk() } } -extern int errno; -extern int sys_nerr; - /* * p_error prints the system error message on the standard location * on the screen and then exits. (i.e. a curses version of perror) |