summaryrefslogtreecommitdiff
path: root/libc/src/string
diff options
context:
space:
mode:
authorJoseph Huber <huberjn@outlook.com>2025-09-02 21:53:03 -0500
committerGitHub <noreply@github.com>2025-09-02 21:53:03 -0500
commit4aeb2900837ce750af821e1f0dba6d53ccd4870a (patch)
treea1755df2b2c32deb71d2c2970169effdb9d07cb4 /libc/src/string
parent74275a11038c0c354a31b5da4657e5ddfad58d9a (diff)
[libc] Add more elementwise wrapper functions (#156515)
Summary: Fills out some of the missing fundamental floating point operations. These just wrap the elementwise builtin of the same name.
Diffstat (limited to 'libc/src/string')
-rw-r--r--libc/src/string/memory_utils/generic/inline_strlen.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/src/string/memory_utils/generic/inline_strlen.h b/libc/src/string/memory_utils/generic/inline_strlen.h
index 111da35b85ee..68fba2afb3a5 100644
--- a/libc/src/string/memory_utils/generic/inline_strlen.h
+++ b/libc/src/string/memory_utils/generic/inline_strlen.h
@@ -9,6 +9,7 @@
#ifndef LLVM_LIBC_SRC_STRING_MEMORY_UTILS_GENERIC_INLINE_STRLEN_H
#define LLVM_LIBC_SRC_STRING_MEMORY_UTILS_GENERIC_INLINE_STRLEN_H
+#include "src/__support/CPP/bit.h"
#include "src/__support/CPP/simd.h"
#include "src/__support/common.h"