Skip to content

Instantly share code, notes, and snippets.

@kerie
Created November 15, 2010 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kerie/700224 to your computer and use it in GitHub Desktop.
Save kerie/700224 to your computer and use it in GitHub Desktop.
#include<linux/init.h>
#include<linux/module.h>
static int hello_exit()
{
printk("Goodbye world\n");
}
module_exit(hello_exit);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment