Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
refs/heads/main
/
.
/
coccinelle
/
swap-two.cocci
blob: d80c4e0402f44e268d358b72b3212a23c372e063 [
file
] [
log
] [
blame
] [
raw
]
/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
expression x
,
y
,
z
;
@@
-
z
=
x
;
-
x
=
y
;
-
y
=
z
;
+
SWAP_TWO
(
x
,
y
);