diff options
author | charnier <charnier@FreeBSD.org> | 1998-03-23 07:47:31 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-03-23 07:47:31 +0000 |
commit | a5e89829a620c3562647684b21896bcccda77034 (patch) | |
tree | d2694d8eca701b48b840d9af5d173970314f86ad /usr.bin/wall | |
parent | 750ab90255369a936df728c511f3bcbbc337b373 (diff) | |
download | FreeBSD-src-a5e89829a620c3562647684b21896bcccda77034.zip FreeBSD-src-a5e89829a620c3562647684b21896bcccda77034.tar.gz |
Add rcsid. Sort #includes.
Diffstat (limited to 'usr.bin/wall')
-rw-r--r-- | usr.bin/wall/ttymsg.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.bin/wall/ttymsg.c b/usr.bin/wall/ttymsg.c index 6a7c3d1..c7bdba9 100644 --- a/usr.bin/wall/ttymsg.c +++ b/usr.bin/wall/ttymsg.c @@ -32,20 +32,24 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)ttymsg.c 8.2 (Berkeley) 11/16/93"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ #include <sys/types.h> #include <sys/uio.h> -#include <signal.h> -#include <fcntl.h> #include <dirent.h> #include <errno.h> +#include <fcntl.h> #include <paths.h> -#include <unistd.h> +#include <signal.h> #include <stdio.h> #include <string.h> #include <stdlib.h> +#include <unistd.h> /* * Display the contents of a uio structure on a terminal. Used by wall(1), |