summaryrefslogtreecommitdiffstats
path: root/share/man/man7
diff options
context:
space:
mode:
authoraaron <aaron@openbsd.org>2004-05-07 15:35:19 +0000
committeraaron <aaron@openbsd.org>2004-05-07 15:35:19 +0000
commit80619f204009b403ae9089e8b14bab491afbe618 (patch)
tree213b49c8724b6169a91e012fb64604950f3d8d4d /share/man/man7
parentMake #endif /* foo */ comments really match the #if condition. (diff)
downloadwireguard-openbsd-80619f204009b403ae9089e8b14bab491afbe618.tar.xz
wireguard-openbsd-80619f204009b403ae9089e8b14bab491afbe618.zip
List all operators (= += -= *= /= %= <<= >>= &= ^= |=) instead of printing the
first few followed by "etc". From FreeBSD. millert@ ok
Diffstat (limited to 'share/man/man7')
-rw-r--r--share/man/man7/operator.76
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man7/operator.7 b/share/man/man7/operator.7
index b092eef19c3..7389604890e 100644
--- a/share/man/man7/operator.7
+++ b/share/man/man7/operator.7
@@ -1,4 +1,4 @@
-.\" $OpenBSD: operator.7,v 1.4 2003/06/02 23:30:15 millert Exp $
+.\" $OpenBSD: operator.7,v 1.5 2004/05/07 15:35:19 aaron Exp $
.\" $NetBSD: operator.7,v 1.3 1994/11/30 19:07:26 jtc Exp $
.\"
.\" Copyright (c) 1989, 1990, 1993
@@ -38,7 +38,7 @@
.Nd C operator precedence and associativity
.Sh DESCRIPTION
.Bd -ragged -offset indent -compact
-.Bl -column "Operator Associativity "
+.Bl -column "= += -= *= /= %= <<= >>= &= ^= |="
.It Operator Associativity
.It -------- -------------
.It \&() [] -> . left to right
@@ -54,7 +54,7 @@
.It \&&& left to right
.It \&|| left to right
.It \&?: right to left
-.It \&= += -= etc. right to left
+.It "= += -= *= /= %= <<= >>= &= ^= |= right to left"
.It \&, left to right
.El
.Ed