mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
0d1fb0a47c
Convert files to use SPDX header. All files are licensed under the GPLv2. Signed-off-by: Alex Dewar <alex.dewar@gmx.co.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
17 lines
509 B
C
17 lines
509 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
extern void __bb_init_func(void *) __attribute__((weak));
|
|
EXPORT_SYMBOL(__bb_init_func);
|
|
|
|
extern void __gcov_init(void *) __attribute__((weak));
|
|
EXPORT_SYMBOL(__gcov_init);
|
|
extern void __gcov_merge_add(void *, unsigned int) __attribute__((weak));
|
|
EXPORT_SYMBOL(__gcov_merge_add);
|
|
extern void __gcov_exit(void) __attribute__((weak));
|
|
EXPORT_SYMBOL(__gcov_exit);
|