1
0

stop.c 279 B

12345678910111213
  1. /*
  2. * stop.c - Illustration of multi filed modules
  3. */
  4. #include <linux/kernel.h> /* We are doing kernel work */
  5. #include <linux/module.h> /* Specifically, a module */
  6. void cleanup_module(void)
  7. {
  8. pr_info("Short is the life of a kernel module\n");
  9. }
  10. MODULE_LICENSE("GPL");