Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-closedir.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_CLOSEDIR_H__
7#define __MOCK_CLOSEDIR_H__
8
9#include <dirent.h>
10#include <sys/types.h>
11
17void __wrap_closedir(DIR *dirp); // NOLINT(readability-identifier-naming)
18 // Rationale: Naming scheme fixed due to linker wrapping.
19
20#endif /* __MOCK_CLOSEDIR_H__ */
void __wrap_closedir(DIR *dirp)
Definition mock-closedir.c:12