From: Gerhard Sittig Date: Sun, 13 Oct 2019 09:58:49 +0000 (+0200) Subject: input/csv: include section nits X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=e05f18273d0a8bef34060ff539aa2cdc591be559 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. --- 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"