From 648fe4be0e7e0d16287895cc04d69c649f987f12 Mon Sep 17 00:00:00 2001
From: Tim Wickberg <tim@schedmd.com>
Date: Mon, 28 Jan 2019 23:19:16 -0700
Subject: [PATCH] Remove stray macros.h definition.

Add missing stdbool.h include, which was indirect through macros.h.
---
 src/common/xmalloc.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/common/xmalloc.h b/src/common/xmalloc.h
index 282e6eb0909..a4c96bd127e 100644
--- a/src/common/xmalloc.h
+++ b/src/common/xmalloc.h
@@ -68,10 +68,9 @@
 #ifndef _XMALLOC_H
 #define _XMALLOC_H
 
+#include <stdbool.h>
 #include <sys/types.h>
 
-#include "macros.h"
-
 #define xmalloc(__sz) \
 	slurm_xmalloc (__sz, true, __FILE__, __LINE__, __func__)
 
-- 
GitLab