diff options
Diffstat (limited to 'usr.bin/telnet/network.c')
-rw-r--r-- | usr.bin/telnet/network.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.bin/telnet/network.c b/usr.bin/telnet/network.c index 60e8591..5c9b0c5 100644 --- a/usr.bin/telnet/network.c +++ b/usr.bin/telnet/network.c @@ -32,7 +32,12 @@ */ #ifndef lint -static char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93"; +#if 0 +static const char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93"; +#else +static const char rcsid[] = + "$FreeBSD$"; +#endif #endif /* not lint */ #include <sys/types.h> @@ -42,6 +47,7 @@ static char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93"; #include <errno.h> #include <arpa/telnet.h> +#include <unistd.h> #include "ring.h" |