Initial commit

This commit is contained in:
Claudio Maggioni 2019-03-21 16:03:02 +01:00
commit 9d7dbd6d16
2 changed files with 59 additions and 0 deletions

53
.gitignore vendored Normal file
View file

@ -0,0 +1,53 @@
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf

6
hello.c Normal file
View file

@ -0,0 +1,6 @@
#include <stdio.h>
// vim: set ts=4 sw=4 tw=80 et:
int main() {
printf("Hello\n");
}