mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-07-23 15:00:51 -04:00
reorganize dir
Signed-off-by: Mia Steinkirch <mia.steinkirch@gmail.com>
This commit is contained in:
parent
1b6f705e7c
commit
a8e71c50db
276 changed files with 23954 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/init.h>
|
||||
|
||||
static int __init setup(void) {
|
||||
printk(KERN_DEBUG "Hello World!");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __exit teardown(void) {
|
||||
}
|
||||
|
||||
module_init(setup);
|
||||
module_exit(teardown);
|
Loading…
Add table
Add a link
Reference in a new issue