1e01aa904Sopenharmony_ci#include <linux/module.h>
2e01aa904Sopenharmony_ci
3e01aa904Sopenharmony_civoid exported_function(void) {}
4e01aa904Sopenharmony_ciEXPORT_SYMBOL(exported_function);
5e01aa904Sopenharmony_ci
6e01aa904Sopenharmony_civoid exported_function_gpl(void) {}
7e01aa904Sopenharmony_ciEXPORT_SYMBOL_GPL(exported_function_gpl);
8e01aa904Sopenharmony_ci
9e01aa904Sopenharmony_ciint exported_variable = 1;
10e01aa904Sopenharmony_ciEXPORT_SYMBOL(exported_variable);
11e01aa904Sopenharmony_ci
12e01aa904Sopenharmony_ciint exported_variable_gpl = 1;
13e01aa904Sopenharmony_ciEXPORT_SYMBOL_GPL(exported_variable_gpl);
14e01aa904Sopenharmony_ci
15e01aa904Sopenharmony_civoid local_function(void) {}
16e01aa904Sopenharmony_ciint local_variable = 2;
17