From 73191416cc24884ffab5f21cc3405c7757884fba Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 3 Jan 2012 19:56:01 +0100 Subject: [PATCH] sr/srd: Fix left-over #includes. The libs themselves should use #include "sigrok.h" etc., while the frontends must use #include and so on. --- controller.c | 2 +- decoder.c | 2 +- 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 /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ #include #include diff --git a/decoder.c b/decoder.c index 9f951c1..628e953 100644 --- a/decoder.c +++ b/decoder.c @@ -19,7 +19,7 @@ */ #include "config.h" -#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ #include /* The list of protocol decoders. */ diff --git a/util.c b/util.c index 0885626..6164aaa 100644 --- a/util.c +++ b/util.c @@ -19,7 +19,7 @@ */ #include "config.h" -#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ /** -- 2.30.2