userland: start per-directory flags with userland/gcc

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-03-13 00:00:01 +00:00
parent a85ca696c4
commit e32dcb85e9
4 changed files with 45 additions and 17 deletions

9
userland/c/hello.c Normal file
View File

@@ -0,0 +1,9 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#sanity-checks */
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("hello");
return EXIT_SUCCESS;
}