From 16a51d8f522dcf0059b6984c2c46032b3a28932b Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Thu, 21 Jul 2022 23:09:27 +0200 Subject: [PATCH] Fix build error due to clang-format reordering the headers --- src/xbt/mmalloc/mm_interface.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xbt/mmalloc/mm_interface.c b/src/xbt/mmalloc/mm_interface.c index 030a250e78..28534b08fb 100644 --- a/src/xbt/mmalloc/mm_interface.c +++ b/src/xbt/mmalloc/mm_interface.c @@ -26,12 +26,13 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "mmprivate.h" #include /* After sys/types.h, at least for dpx/2. */ #include #include #include +#include "mmprivate.h" + // This is the underlying implementation of mmalloc_get_bytes_used_remote. // Is it used directly to evaluate the bytes used from a different process. size_t mmalloc_get_bytes_used_remote(size_t heaplimit, const malloc_info* heapinfo) -- 2.20.1