diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-31 04:15:29 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-31 08:56:03 -0400 |
commit | 73f860db9893deab6aebceb53dd7d0deb662e832 (patch) | |
tree | 28f05ab4f0bf9af495c807a03a7b0037a6d93fb3 /src/python-systemd | |
parent | 5d459d6b07206963a022e9a95ea9d8c18dc0eab8 (diff) |
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.
Diffstat (limited to 'src/python-systemd')
-rw-r--r-- | src/python-systemd/_daemon.c | 2 | ||||
-rw-r--r-- | src/python-systemd/_journal.c | 2 | ||||
-rw-r--r-- | src/python-systemd/_reader.c | 2 | ||||
-rw-r--r-- | src/python-systemd/id128.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/python-systemd/_daemon.c b/src/python-systemd/_daemon.c index 7756a7880d..65cfec7ce8 100644 --- a/src/python-systemd/_daemon.c +++ b/src/python-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/src/python-systemd/_journal.c b/src/python-systemd/_journal.c index cbc661d837..456e4a2796 100644 --- a/src/python-systemd/_journal.c +++ b/src/python-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/src/python-systemd/_reader.c b/src/python-systemd/_reader.c index 9a19a10219..d17aa83ec9 100644 --- a/src/python-systemd/_reader.c +++ b/src/python-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/src/python-systemd/id128.c b/src/python-systemd/id128.c index 6dadf7b2fd..5ec7309a54 100644 --- a/src/python-systemd/id128.c +++ b/src/python-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" |