Skip to content

Commit a68a57e

Browse files
committed
Always prefer our headers to system headers
In practice this shouldn't make much difference, but sometimes our headers might be newer, and we want to test them.
1 parent 4398250 commit a68a57e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

systemd/_daemon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include <assert.h>
3030
#include <sys/socket.h>
3131

32-
#include <systemd/sd-daemon.h>
32+
#include "systemd/sd-daemon.h"
3333
#include "pyutil.h"
3434
#include "macro.h"
3535

systemd/_journal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "util.h"
2626

2727
#define SD_JOURNAL_SUPPRESS_LOCATION
28-
#include <systemd/sd-journal.h>
28+
#include "systemd/sd-journal.h"
2929

3030
PyDoc_STRVAR(journal_sendv__doc__,
3131
"sendv('FIELD=value', 'FIELD=value', ...) -> None\n\n"

systemd/_reader.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <time.h>
2626
#include <stdio.h>
2727

28-
#include <systemd/sd-journal.h>
28+
#include "systemd/sd-journal.h"
2929

3030
#include "pyutil.h"
3131
#include "macro.h"

systemd/id128.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include <Python.h>
2323

24-
#include <systemd/sd-messages.h>
24+
#include "systemd/sd-messages.h"
2525

2626
#include "pyutil.h"
2727
#include "log.h"

0 commit comments

Comments
 (0)