diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel index bdf260a783baa..0f35d3df4c49a 100644 --- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel @@ -2530,9 +2530,13 @@ libc_function( libc_function( name = "lseek", srcs = ["src/unistd/linux/lseek.cpp"], - hdrs = ["src/unistd/lseek.h"], + hdrs = [ + "src/__support/File/linux/lseekImpl.h", + "src/unistd/lseek.h", + ], deps = [ ":__support_common", + ":__support_error_or", ":__support_osutil_syscall", ":errno", ],