File tree Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ add_entrypoint_object(
5
5
HDRS
6
6
../writev.h
7
7
DEPENDS
8
+ libc.hdr.types.ssize_t
9
+ libc.hdr.types.struct_iovec
8
10
libc.include.sys_syscall
9
11
libc.src.__support.OSUtil.osutil
10
12
libc.src.__support.common
11
13
libc.src.errno.errno
12
- libc.hdr.types.ssize_t
13
- libc.hdr.types.struct_iovec
14
14
)
15
15
16
16
add_entrypoint_object (
@@ -20,10 +20,10 @@ add_entrypoint_object(
20
20
HDRS
21
21
../readv.h
22
22
DEPENDS
23
+ libc.hdr.types.ssize_t
24
+ libc.hdr.types.struct_iovec
23
25
libc.include.sys_syscall
24
26
libc.src.__support.OSUtil.osutil
25
27
libc.src.__support.common
26
28
libc.src.errno.errno
27
- libc.hdr.types.ssize_t
28
- libc.hdr.types.struct_iovec
29
29
)
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
#include " src/sys/uio/readv.h"
9
+ #include " hdr/types/ssize_t.h"
10
+ #include " hdr/types/struct_iovec.h"
9
11
#include " src/__support/OSUtil/syscall.h"
10
12
#include " src/__support/common.h"
11
13
#include " src/errno/libc_errno.h"
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
#include " src/sys/uio/writev.h"
9
+ #include " hdr/types/ssize_t.h"
10
+ #include " hdr/types/struct_iovec.h"
9
11
#include " src/__support/OSUtil/syscall.h"
10
12
#include " src/__support/common.h"
11
13
#include " src/errno/libc_errno.h"
Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ add_libc_unittest(
7
7
SRCS
8
8
writev_test.cpp
9
9
DEPENDS
10
- libc.src.errno.errno
10
+ libc.hdr.types.struct_iovec
11
11
libc.src.__support.common
12
+ libc.src.errno.errno
13
+ libc.src.fcntl.open
12
14
libc.src.sys.uio.writev
13
15
libc.src.unistd.close
14
- libc.src.fcntl.open
15
16
libc.test.UnitTest.ErrnoSetterMatcher
16
17
)
17
18
@@ -22,10 +23,11 @@ add_libc_unittest(
22
23
SRCS
23
24
readv_test.cpp
24
25
DEPENDS
25
- libc.src.errno.errno
26
+ libc.hdr.types.struct_iovec
26
27
libc.src.__support.common
28
+ libc.src.errno.errno
29
+ libc.src.fcntl.open
27
30
libc.src.sys.uio.readv
28
31
libc.src.unistd.close
29
- libc.src.fcntl.open
30
32
libc.test.UnitTest.ErrnoSetterMatcher
31
33
)
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
+ #include " hdr/types/struct_iovec.h"
9
10
#include " src/fcntl/open.h"
10
11
#include " src/sys/uio/readv.h"
11
12
#include " src/unistd/close.h"
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
+ #include " hdr/types/struct_iovec.h"
9
10
#include " src/fcntl/open.h"
10
11
#include " src/sys/uio/writev.h"
11
12
#include " src/unistd/close.h"
You can’t perform that action at this time.
0 commit comments