1
0
Fork 0
mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-01-22 16:06:04 -05:00
linux/kernel/static_call.c

9 lines
158 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#include <linux/static_call.h>
long __static_call_return0(void)
{
return 0;
}
EXPORT_SYMBOL_GPL(__static_call_return0);