mirror of
https://github.com/systemd/systemd.git
synced 2026-07-18 13:30:13 +00:00
As suggested in
8b3ad3983f (r837345892)
The define is generalized and moved to path-lookup.h, where it seems to fit
better. This allows a recursive include to be removed and in general makes
things simpler.
12 lines
282 B
C
12 lines
282 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "install.h"
|
|
#include "unit-name.h"
|
|
|
|
int install_name_printf(
|
|
LookupScope scope,
|
|
const UnitFileInstallInfo *info,
|
|
const char *format,
|
|
char **ret);
|