Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/compat/linuxkpi/common/include/kunit/static_stub.h
39604 views
1
/*
2
* Copyright (c) 2025 The FreeBSD Foundation
3
*
4
* This software was developed by Björn Zeeb under sponsorship from
5
* the FreeBSD Foundation.
6
*
7
* SPDX-License-Identifier: BSD-2-Clause
8
*/
9
10
#ifndef _LINUXKPI_KUNIT_STATIC_STUB_H
11
#define _LINUXKPI_KUNIT_STATIC_STUB_H
12
13
#define KUNIT_STATIC_STUB_REDIRECT(_fn, ...) do { } while(0)
14
15
#endif /* _LINUXKPI_KUNIT_STATIC_STUB_H */
16
17