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.
This commit is contained in:
Gerhard Sittig 2019-10-13 11:58:49 +02:00
parent affaf54012
commit e05f18273d
1 changed files with 4 additions and 2 deletions

View File

@ -17,10 +17,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include "config.h"
#include <glib.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h"