Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-writev.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_WRITEV_H__
7#define __MOCK_WRITEV_H__
8
9#include <sys/uio.h>
10
16ssize_t __wrap_writev(int fd, const struct iovec *iov, // NOLINT(readability-identifier-naming)
17 int iovcnt);
18// Rationale: Naming scheme fixed due to linker wrapping.
19
20#endif /* __MOCK_WRITEV_H__ */
ssize_t __wrap_writev(int fd, const struct iovec *iov, int iovcnt)
Definition mock-writev.c:12