mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
15 lines
608 B
C
15 lines
608 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <math.h> /* IWYU pragma: export */
|
|
|
|
#include "basic-forward.h"
|
|
|
|
/* On some optimization level, iszero(x) is converted to (x == 0.0), and emits warning -Wfloat-equal.
|
|
* The argument must be a floating point, i.e. one of float, double, or long double. */
|
|
#define iszero_safe(x) (fpclassify(x) == FP_ZERO)
|
|
|
|
/* To avoid x == y and triggering compile warning -Wfloat-equal. This returns false if one of the argument is
|
|
* NaN or infinity. One of the argument must be a floating point. */
|
|
#define fp_equal(x, y) iszero_safe((x) - (y))
|