Skip to content

Commit f6e5f90

Browse files
committed
[libc] Fix undeclared 'free' function in stream test
Summary: We need this function from the test.cpp but need to declare it manually.
1 parent 9d3057c commit f6e5f90

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libc/test/integration/startup/gpu/rpc_stream_test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "test/IntegrationTest/test.h"
1616

1717
extern "C" void *malloc(uint64_t);
18+
extern "C" void free(void *);
1819

1920
using namespace __llvm_libc;
2021

0 commit comments

Comments
 (0)