From 21d9f725df8ba177dfa8a6a719618d5078dbb7a8 Mon Sep 17 00:00:00 2001 From: Joseph Huber Date: Tue, 29 Nov 2022 15:03:00 -0600 Subject: [PATCH] [libc] Fix test not including 'free' Summary: A previous change removed a transient inclusion of `stdlib.h` from the `string_utils.h` file which this test depended on. Include it directly here. --- libc/test/integration/src/unistd/getcwd_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/test/integration/src/unistd/getcwd_test.cpp b/libc/test/integration/src/unistd/getcwd_test.cpp index 80b45ef..5e52155 100644 --- a/libc/test/integration/src/unistd/getcwd_test.cpp +++ b/libc/test/integration/src/unistd/getcwd_test.cpp @@ -13,6 +13,7 @@ #include "utils/IntegrationTest/test.h" #include +#include // For malloc and free using __llvm_libc::cpp::string_view; -- 2.7.4