mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-16 14:21:05 +00:00
12 lines
127 B
Plaintext
12 lines
127 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
constant c;
|
|
@@
|
|
(
|
|
- errno == -c
|
|
+ errno == c
|
|
|
|
|
- errno != -c
|
|
+ errno != c
|
|
)
|