1e01aa904Sopenharmony_ci#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