/*1* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)2* Licensed under the GPL3*/45#include "linux/module.h"67extern void __bb_init_func(void *) __attribute__((weak));8EXPORT_SYMBOL(__bb_init_func);910/*11* This is defined (and referred to in profiling stub code) only by some GCC12* versions in libgcov.13*14* Since SuSE backported the fix, we cannot handle it depending on GCC version.15* So, unconditionally export it. But also give it a weak declaration, which16* will be overridden by any other one.17*/1819extern void __gcov_init(void *) __attribute__((weak));20EXPORT_SYMBOL(__gcov_init);2122extern void __gcov_merge_add(void *) __attribute__((weak));23EXPORT_SYMBOL(__gcov_merge_add);242526