mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
Add aha.c stub
This commit is contained in:
parent
1204901470
commit
9fe3d93db2
1 changed files with 11 additions and 0 deletions
11
arch/um/kernel/aha.c
Normal file
11
arch/um/kernel/aha.c
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include "shared/aha.h"
|
||||
void aha_test(void){
|
||||
char __user *arg;
|
||||
printk("Hello World\n");
|
||||
}
|
||||
|
||||
void aha_test2(char __user* __user* argv){
|
||||
char *a;
|
||||
a = kmalloc(90, GFP_KERNEL);
|
||||
}
|
||||
|
Loading…
Reference in a new issue