mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-16 19:17:42 +00:00
31 lines
218 B
Plaintext
31 lines
218 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
expression e;
|
|
statement s;
|
|
@@
|
|
if (
|
|
(
|
|
!e
|
|
|
|
|
- e == NULL
|
|
+ !e
|
|
)
|
|
)
|
|
{...}
|
|
else s
|
|
|
|
@@
|
|
expression e;
|
|
statement s;
|
|
@@
|
|
if (
|
|
(
|
|
e
|
|
|
|
|
- e != NULL
|
|
+ e
|
|
)
|
|
)
|
|
{...}
|
|
else s
|