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