aboutsummaryrefslogtreecommitdiffstats
path: root/man/man7/operator.7
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-09-09 14:15:08 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-09-09 14:15:08 +0200
commit96e72ec1fbadd13cbcbc2b263540e4f5e9e09d7c (patch)
tree70686b943e33a6e939ad265acb7ddfef70b91f32 /man/man7/operator.7
parent8f4ed6463206e8ede815c72085c7305dafc2e4fc (diff)
downloadman-pages-96e72ec1fbadd13cbcbc2b263540e4f5e9e09d7c.tar.gz
Revert "src.mk, All pages: Move man* to man/"
This reverts commit 70ac1c4785fc1e158ab2349a962dba2526bf4fbc. Link: <https://lore.kernel.org/linux-man/YxcV4h+Xn7cd6+q2@pevik/T/> Reported-by: Petr Vorel <pvorel@suse.cz> Reported-by: Jakub Wilk <jwilk@jwilk.net> Cc: Stefan Puiu <stefan.puiu@gmail.com> Signed-off-by: Alex Colomar <alx.manpages@gmail.com>
Diffstat (limited to 'man/man7/operator.7')
-rw-r--r--man/man7/operator.753
1 files changed, 0 insertions, 53 deletions
diff --git a/man/man7/operator.7 b/man/man7/operator.7
deleted file mode 100644
index 77ae9c2bfb..0000000000
--- a/man/man7/operator.7
+++ /dev/null
@@ -1,53 +0,0 @@
-.\" Copyright (c) 1989, 1990, 1993
-.\" The Regents of the University of California. All rights reserved.
-.\"
-.\" SPDX-License-Identifier: BSD-3-Clause
-.\"
-.\" @(#)operator.7 8.1 (Berkeley) 6/9/93
-.\"
-.\" Copied shamelessly from FreeBSD with minor changes. 2003-05-21
-.\" Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
-.\"
-.\" Restored automatic formatting from FreeBSD. 2003-08-24
-.\" Martin Schulze <joey@infodrom.org>
-.\"
-.\" 2007-12-08, mtk, Converted from mdoc to man macros
-.\"
-.TH OPERATOR 7 2020-08-13 "Linux man-pages (unreleased)"
-.SH NAME
-operator \- C operator precedence and order of evaluation
-.SH DESCRIPTION
-This manual page lists C operators and their precedence in evaluation.
-.PP
-.TS
-lb lb lb
-l l l.
-Operator Associativity Notes
-[] () . \-> ++ \-\- left to right [1]
-++ \-\- & * + \- \(ti ! sizeof right to left [2]
-(type) right to left
-* / % left to right
-+ \- left to right
-<< >> left to right
-< > <= >= left to right
-== != left to right
-& left to right
-\(ha left to right
-| left to right
-&& left to right
-|| left to right
-?: right to left
-= *= /= %= += \-= <<= >>= &= \(ha= |= right to left
-, left to right
-.TE
-.PP
-The following notes provide further information to the above table:
-.PP
-.PD 0
-.IP [1] 4
-The ++ and \-\- operators at this precedence level are
-the postfix flavors of the operators.
-.IP [2]
-The ++ and \-\- operators at this precedence level are
-the prefix flavors of the operators.
-.PD