diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-09-26 07:02:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-09-26 07:02:53 +0000 |
commit | 2bcaea0ab581309c57b8f77240892c3f17d64f93 (patch) | |
tree | 8a2c2bde3d1861b1687862e04031c3131ba8661c | |
parent | 38cf5092877e599fada19dd967a46fa6630fbcf7 (diff) |
spacing
-rw-r--r-- | usr.bin/bc/bc.1 | 4 | ||||
-rw-r--r-- | usr.bin/bc/extern.h | 4 | ||||
-rw-r--r-- | usr.bin/bc/scan.l | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/bc/bc.1 b/usr.bin/bc/bc.1 index 161908fb6f6..0664bf470c5 100644 --- a/usr.bin/bc/bc.1 +++ b/usr.bin/bc/bc.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bc.1,v 1.1 2003/09/25 19:34:22 otto Exp $ +.\" $OpenBSD: bc.1,v 1.2 2003/09/26 07:02:52 deraadt Exp $ .\" .\" Copyright (C) Caldera International Inc. 2001-2002. .\" All rights reserved. @@ -67,7 +67,7 @@ option is present. In this case the .Ar \&dc input is sent to the standard output instead. -.El +.El .Pp The syntax for .Nm \&bc diff --git a/usr.bin/bc/extern.h b/usr.bin/bc/extern.h index 6cefcffd05f..85cae900c40 100644 --- a/usr.bin/bc/extern.h +++ b/usr.bin/bc/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.1 2003/09/25 19:32:44 otto Exp $ */ +/* $OpenBSD: extern.h,v 1.2 2003/09/26 07:02:52 deraadt Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -19,7 +19,7 @@ #include <stdio.h> struct lvalue { - int load; + int load; int store; }; diff --git a/usr.bin/bc/scan.l b/usr.bin/bc/scan.l index 99f0928999f..40952ff88df 100644 --- a/usr.bin/bc/scan.l +++ b/usr.bin/bc/scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: scan.l,v 1.1 2003/09/25 19:32:44 otto Exp $ */ +/* $OpenBSD: scan.l,v 1.2 2003/09/26 07:02:52 deraadt Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -18,7 +18,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: scan.l,v 1.1 2003/09/25 19:32:44 otto Exp $"; +static const char rcsid[] = "$OpenBSD: scan.l,v 1.2 2003/09/26 07:02:52 deraadt Exp $"; #endif /* not lint */ #include <err.h> @@ -30,7 +30,7 @@ static const char rcsid[] = "$OpenBSD: scan.l,v 1.1 2003/09/25 19:32:44 otto Exp int lineno; -static char *strbuf = NULL; +static char *strbuf = NULL; static size_t strbuf_sz = 1; static bool dot_seen; @@ -102,7 +102,7 @@ DIGIT [0-9A-F] } "auto" return AUTO; -"break" return BREAK; +"break" return BREAK; "define" return DEFINE; "ibase" return IBASE; "if" return IF; |