From 43cf836e5773d4b7378c5949eb8232e2d461ca54 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Wed, 9 Mar 2022 17:21:33 +0530 Subject: [PATCH] src/abstraction-map.c: re-arrange the header files Re-arrange the headers files, in the following order: 1. Header files that declare the functions, are defined in this file. 2. Other header files from the libcgroup. 3. Standard header file. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- src/abstraction-map.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/abstraction-map.c b/src/abstraction-map.c index 781c8077..def0d3b6 100644 --- a/src/abstraction-map.c +++ b/src/abstraction-map.c @@ -19,17 +19,17 @@ * along with this library; if not, see . */ +#include "abstraction-common.h" +#include "abstraction-map.h" + #include #include -#include -#include #include #include #include - -#include "abstraction-common.h" -#include "abstraction-map.h" +#include +#include const struct cgroup_abstraction_map cgroup_v1_to_v2_map[] = { /* cpu controller */ -- 2.47.2