File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed
utils/bazel/llvm-project-overlay/libc Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -570,6 +570,16 @@ libc_support_library(
570
570
],
571
571
)
572
572
573
+ libc_support_library (
574
+ name = "__support_file_linux_lseekimpl" ,
575
+ hdrs = ["src/__support/File/linux/lseekImpl.h" ],
576
+ deps = [
577
+ ":__support_common" ,
578
+ ":__support_error_or" ,
579
+ ":__support_osutil_syscall" ,
580
+ ],
581
+ )
582
+
573
583
libc_support_library (
574
584
name = "__support_named_pair" ,
575
585
hdrs = ["src/__support/named_pair.h" ],
@@ -2530,13 +2540,10 @@ libc_function(
2530
2540
libc_function (
2531
2541
name = "lseek" ,
2532
2542
srcs = ["src/unistd/linux/lseek.cpp" ],
2533
- hdrs = [
2534
- "src/__support/File/linux/lseekImpl.h" ,
2535
- "src/unistd/lseek.h" ,
2536
- ],
2543
+ hdrs = ["src/unistd/lseek.h" ],
2537
2544
deps = [
2538
2545
":__support_common" ,
2539
- ":__support_error_or " ,
2546
+ ":__support_file_linux_lseekimpl " ,
2540
2547
":__support_osutil_syscall" ,
2541
2548
":errno" ,
2542
2549
],
You can’t perform that action at this time.
0 commit comments