Systemd/src/basic/plymouth-util.c
2019-03-14 13:25:51 +01:00

10 lines
178 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#include <unistd.h>
#include "plymouth-util.h"
bool plymouth_running(void) {
return access("/run/plymouth/pid", F_OK) >= 0;
}