From 306b13e47fe26656cb7b3f9e4e448e68a4da10e1 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Wed, 9 Mar 2022 17:19:42 +0530 Subject: [PATCH] src/abstraction-cpuset.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-cpuset.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/abstraction-cpuset.c b/src/abstraction-cpuset.c index 7fa9bae5..891b2ee2 100644 --- a/src/abstraction-cpuset.c +++ b/src/abstraction-cpuset.c @@ -19,16 +19,16 @@ * along with this library; if not, see . */ +#include "abstraction-common.h" + #include #include -#include -#include #include #include #include - -#include "abstraction-common.h" +#include +#include static const char * const MEMBER = "member"; static const char * const ROOT = "root"; -- 2.47.2