summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-07-31 04:15:29 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-07-05 14:19:22 -0400
commita68a57ed71e89c124d781bdae49f8adf8b900227 (patch)
treede7b48167dbba5d99ad8158eac3dfadb981ab23f
parent4398250261f189dace230eceb18209fc6e37aef4 (diff)
downloadpython-systemd-a68a57ed71e89c124d781bdae49f8adf8b900227.tar.gz
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.
-rw-r--r--systemd/_daemon.c2
-rw-r--r--systemd/_journal.c2
-rw-r--r--systemd/_reader.c2
-rw-r--r--systemd/id128.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/systemd/_daemon.c b/systemd/_daemon.c
index 7756a78..65cfec7 100644
--- a/systemd/_daemon.c
+++ b/systemd/_daemon.c
@@ -29,7 +29,7 @@
#include <assert.h>
#include <sys/socket.h>
-#include <systemd/sd-daemon.h>
+#include "systemd/sd-daemon.h"
#include "pyutil.h"
#include "macro.h"
diff --git a/systemd/_journal.c b/systemd/_journal.c
index cbc661d..456e4a2 100644
--- a/systemd/_journal.c
+++ b/systemd/_journal.c
@@ -25,7 +25,7 @@
#include "util.h"
#define SD_JOURNAL_SUPPRESS_LOCATION
-#include <systemd/sd-journal.h>
+#include "systemd/sd-journal.h"
PyDoc_STRVAR(journal_sendv__doc__,
"sendv('FIELD=value', 'FIELD=value', ...) -> None\n\n"
diff --git a/systemd/_reader.c b/systemd/_reader.c
index 9a19a10..d17aa83 100644
--- a/systemd/_reader.c
+++ b/systemd/_reader.c
@@ -25,7 +25,7 @@
#include <time.h>
#include <stdio.h>
-#include <systemd/sd-journal.h>
+#include "systemd/sd-journal.h"
#include "pyutil.h"
#include "macro.h"
diff --git a/systemd/id128.c b/systemd/id128.c
index 6dadf7b..5ec7309 100644
--- a/systemd/id128.c
+++ b/systemd/id128.c
@@ -21,7 +21,7 @@
#include <Python.h>
-#include <systemd/sd-messages.h>
+#include "systemd/sd-messages.h"
#include "pyutil.h"
#include "log.h"