From e05f18273d0a8bef34060ff539aa2cdc591be559 Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Sun, 13 Oct 2019 11:58:49 +0200 Subject: [PATCH] input/csv: include section nits Rephrase the #include statements in the CSV input module. "config" is not a system header but is provided by the application source code. Separate the config and system and application groups (their order is essential). Alpha-sort the files within their group for simplified maintenance. --- src/input/csv.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/input/csv.c b/src/input/csv.c index 2fffc503..93288973 100644 --- a/src/input/csv.c +++ b/src/input/csv.c @@ -17,10 +17,12 @@ * along with this program. If not, see . */ -#include +#include "config.h" + +#include #include #include -#include + #include #include "libsigrok-internal.h"