From: Yu Watanabe Date: Mon, 17 Nov 2025 01:47:25 +0000 (+0900) Subject: musl: utmpx: add several missing definitions X-Git-Tag: v259-rc1~30^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ae7d8fd8731c3412df878e8d1e8af9a8e644576;p=thirdparty%2Fsystemd.git musl: utmpx: add several missing definitions --- diff --git a/src/include/musl/utmpx.h b/src/include/musl/utmpx.h new file mode 100644 index 00000000000..d95fc8f25ea --- /dev/null +++ b/src/include/musl/utmpx.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include_next + +#ifndef UTMPX_FILE +#define UTMPX_FILE "/run/utmp" +#endif + +#ifndef WTMPX_FILE +#define WTMPX_FILE "/var/log/wtmp" +#endif + +#ifndef ACCOUNTING +#define ACCOUNTING 9 +#endif