mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
14 lines
203 B
C
14 lines
203 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include "macro.h"
|
|
|
|
/* since glibc-2.36 */
|
|
#ifndef P_PIDFD
|
|
# define P_PIDFD 3
|
|
#else
|
|
assert_cc(P_PIDFD == 3);
|
|
#endif
|