tree-wide: always include our own headers with "" rather than <>

We got this almost always right. Fix this for a few outliers.
This commit is contained in:
Lennart Poettering
2025-01-21 16:08:47 +01:00
committed by Luca Boccassi
parent d641a1f8f7
commit dc5af20b0c
4 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include <sd-bus.h>
#include "sd-bus.h"
#include "time-util.h"
#include "unit-def.h"

View File

@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include <sd-bus.h>
#include "sd-bus.h"
#include "user-record.h"

View File

@@ -3,7 +3,7 @@
#include <syslog.h>
#include <sd-event.h>
#include "sd-event.h"
/* All our long-running services should implement a SIGRTMIN+18 handler that can be used to trigger certain
* actions that affect service runtime. The specific action is indicated via the "value integer" you can pass

View File

@@ -5,8 +5,8 @@
#include <sys/mman.h>
#include <unistd.h>
#include <sd-bus.h>
#include <sd-event.h>
#include "sd-bus.h"
#include "sd-event.h"
#include "bus-locator.h"
#include "bus-wait-for-jobs.h"