We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8eedf0 commit 431741fCopy full SHA for 431741f
libc/src/search/hcreate.cpp
@@ -16,7 +16,7 @@ namespace LIBC_NAMESPACE {
16
LLVM_LIBC_FUNCTION(int, hcreate, (size_t capacity)) {
17
// We follow FreeBSD's implementation here. If the global_hash_table is
18
// already initialized, this function will do nothing and return 1.
19
- // https://android.googlesource.com/platform/bionic/+/refs/heads/main/libc/upstream-freebsd/lib/libc/stdlib/hcreate.c
+ // https://cgit.freebsd.org/src/tree/lib/libc/stdlib/hcreate.c
20
if (internal::global_hash_table != nullptr)
21
return 1;
22
0 commit comments