Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
Note: File does not exist in v6.13.7.
 1/*
 2 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 3 * Licensed under the GPL
 4 */
 5
 6#include <linux/module.h>
 7
 8extern void __bb_init_func(void *)  __attribute__((weak));
 9EXPORT_SYMBOL(__bb_init_func);
10
11extern void __gcov_init(void *)  __attribute__((weak));
12EXPORT_SYMBOL(__gcov_init);
13extern void __gcov_merge_add(void *, unsigned int)  __attribute__((weak));
14EXPORT_SYMBOL(__gcov_merge_add);
15extern void __gcov_exit(void)  __attribute__((weak));
16EXPORT_SYMBOL(__gcov_exit);