From: Joseph Huber Date: Tue, 29 Nov 2022 21:03:00 +0000 (-0600) Subject: [libc] Fix test not including 'free' X-Git-Tag: upstream/17.0.6~25970 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21d9f725df8ba177dfa8a6a719618d5078dbb7a8;p=platform%2Fupstream%2Fllvm.git [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. --- 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;