Welcome to mirror list, hosted at ThFree Co, Russian Federation.

static_call.c « kernel - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9c3e69f383792464c01b2aec9e63967829537f9 (plain)
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: GPL-2.0
#include <linux/static_call.h>

long __static_call_return0(void)
{
	return 0;
}
EXPORT_SYMBOL_GPL(__static_call_return0);