xref: /third_party/libabigail/tests/data/test-symtab/kernel-modversions/one_of_each.c (revision e01aa904)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/libabigail/tests/data/test-symtab/kernel-modversions/
1#include <linux/module.h>
2
3void exported_function(void) {}
4EXPORT_SYMBOL(exported_function);
5
6void exported_function_gpl(void) {}
7EXPORT_SYMBOL_GPL(exported_function_gpl);
8
9int exported_variable = 1;
10EXPORT_SYMBOL(exported_variable);
11
12int exported_variable_gpl = 1;
13EXPORT_SYMBOL_GPL(exported_variable_gpl);
14
15void local_function(void) {}
16int local_variable = 2;
17

Indexes created Thu Nov 07 10:32:03 CST 2024