From e0d1f6c22b7532b4e41f6581d1609404e2db447f Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Fri, 11 Apr 2025 16:08:47 -0400 Subject: [PATCH] Include cstdlib header in common/utils.cc This is required to use `getenv`. --- gloo/common/utils.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gloo/common/utils.cc b/gloo/common/utils.cc index ab075776c..8e93cf589 100644 --- a/gloo/common/utils.cc +++ b/gloo/common/utils.cc @@ -6,6 +6,7 @@ * LICENSE file in the root directory of this source tree. */ +#include #include #ifdef _WIN32