From 6e47870b778748203f6037a74730b99f419c66ce Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 2 Dec 2001 23:44:42 +0000 Subject: Style stuff. Sort includes. Remove 'register' Use __FBSDID(). --- usr.bin/colrm/colrm.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'usr.bin/colrm/colrm.c') diff --git a/usr.bin/colrm/colrm.c b/usr.bin/colrm/colrm.c index b00182d604dd..16035cc02944 100644 --- a/usr.bin/colrm/colrm.c +++ b/usr.bin/colrm/colrm.c @@ -29,24 +29,26 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ +#include + +__FBSDID("$FreeBSD$"); + #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1991, 1993\n\ The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ +#endif #ifndef lint static const char sccsid[] = "@(#)colrm.c 8.2 (Berkeley) 5/4/95"; -#endif /* not lint */ +#endif #include -#include #include #include +#include #include #include #include @@ -62,8 +64,8 @@ main(argc, argv) int argc; char *argv[]; { - register u_long column, start, stop; - register int ch; + u_long column, start, stop; + int ch; char *p; while ((ch = getopt(argc, argv, "")) != -1) -- cgit v1.2.3