Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-mkdirat.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_MKDIRAT_H__
7#define __MOCK_MKDIRAT_H__
8
9#include <sys/stat.h>
10
16int __wrap_mkdirat(int dirfd, const char *pathname, // NOLINT(readability-identifier-naming)
17 mode_t mode);
18// Rationale: Naming scheme fixed due to linker wrapping.
19
20#endif /* __MOCK_MKDIRAT_H__ */
int __wrap_mkdirat(int dirfd, const char *pathname, mode_t mode)
Definition mock-mkdirat.c:14