1 #include <linux/module.h> 2 3 int exported_variable_gpl = 1; 4 EXPORT_SYMBOL_GPL(exported_variable_gpl); 5 local_function(void)6void local_function(void) {} 7 int local_variable = 2; 8
1 #include <linux/module.h> 2 3 int exported_variable_gpl = 1; 4 EXPORT_SYMBOL_GPL(exported_variable_gpl); 5 local_function(void)6void local_function(void) {} 7 int local_variable = 2; 8