diff options
author | 2003-09-26 07:02:52 +0000 | |
---|---|---|
committer | 2003-09-26 07:02:52 +0000 | |
commit | 14e0da22f643d16eb442d005161640291d8d61e9 (patch) | |
tree | 090d2f28dd999b82c6081e1b8c39911458cf303e | |
parent | Regen (diff) | |
download | wireguard-openbsd-14e0da22f643d16eb442d005161640291d8d61e9.tar.xz wireguard-openbsd-14e0da22f643d16eb442d005161640291d8d61e9.zip |
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 | 10 |
3 files changed, 9 insertions, 9 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..b0e35c2ed3f 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.3 2003/09/26 07:04:25 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.3 2003/09/26 07:04:25 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; @@ -183,7 +183,7 @@ add_str(const char *str) if (strlen(strbuf) + arglen + 1> strbuf_sz) { size_t newsize; - char * p; + char *p; newsize = strbuf_sz + arglen + 1; p = realloc(strbuf, newsize); |