From 51163c5dbdea72139ee4b93f5de7e652d30dea9f Mon Sep 17 00:00:00 2001 From: Thurston Dang Date: Tue, 2 Sep 2025 19:48:37 +0000 Subject: [PATCH] [msan] Change zero_alloc.cpp testcase to use stdlib.h (#156491) Avoid build breakage on Mac --- compiler-rt/test/msan/zero_alloc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/msan/zero_alloc.cpp b/compiler-rt/test/msan/zero_alloc.cpp index 6e38ce4c0a8f..1451e1e89e9f 100644 --- a/compiler-rt/test/msan/zero_alloc.cpp +++ b/compiler-rt/test/msan/zero_alloc.cpp @@ -1,7 +1,7 @@ // RUN: %clang_msan -Wno-alloc-size -fsanitize-recover=memory %s -o %t && not %run %t 2>&1 | FileCheck %s -#include #include +#include int main(int argc, char **argv) { {