mirror of
https://github.com/systemd/systemd.git
synced 2026-07-12 18:44:14 +00:00
14 lines
231 B
C
14 lines
231 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/wait.h> /* IWYU pragma: export */
|
|
|
|
#include "forward.h"
|
|
|
|
/* since glibc-2.36 */
|
|
#ifndef P_PIDFD
|
|
# define P_PIDFD 3
|
|
#else
|
|
assert_cc(P_PIDFD == 3);
|
|
#endif
|