root/arch/um/kernel/gmon_syms.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // SPDX-License-Identifier: GPL-2.0
   2 /*
   3  * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
   4  */
   5 
   6 #include <linux/module.h>
   7 
   8 extern void __bb_init_func(void *)  __attribute__((weak));
   9 EXPORT_SYMBOL(__bb_init_func);
  10 
  11 extern void __gcov_init(void *)  __attribute__((weak));
  12 EXPORT_SYMBOL(__gcov_init);
  13 extern void __gcov_merge_add(void *, unsigned int)  __attribute__((weak));
  14 EXPORT_SYMBOL(__gcov_merge_add);
  15 extern void __gcov_exit(void)  __attribute__((weak));
  16 EXPORT_SYMBOL(__gcov_exit);

/* [<][>][^][v][top][bottom][index][help] */