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