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