diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-03 19:56:01 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-03 19:56:01 +0100 |
commit | 73191416cc24884ffab5f21cc3405c7757884fba (patch) | |
tree | 57a590ff2be27a588d4a39e406e1d8ff70552b90 | |
parent | fb53ee5e242be7781b0d34a7d006c630095bcb72 (diff) | |
download | libsigrokdecode-73191416cc24884ffab5f21cc3405c7757884fba.tar.gz libsigrokdecode-73191416cc24884ffab5f21cc3405c7757884fba.zip |
sr/srd: Fix left-over #includes.
The libs themselves should use #include "sigrok.h" etc., while the
frontends must use #include <sigrok.h> and so on.
-rw-r--r-- | controller.c | 2 | ||||
-rw-r--r-- | decoder.c | 2 | ||||
-rw-r--r-- | util.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/controller.c b/controller.c index db85c23..84a22b5 100644 --- a/controller.c +++ b/controller.c @@ -19,7 +19,7 @@ */ #include "config.h" -#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ #include <glib.h> #include <inttypes.h> @@ -19,7 +19,7 @@ */ #include "config.h" -#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ #include <dirent.h> /* The list of protocol decoders. */ @@ -19,7 +19,7 @@ */ #include "config.h" -#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ /** |