mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-30 05:24:25 +01:00
userland: build id
user mode: factor out nicely with -static and build id
This commit is contained in:
8
userland/print_argv.c
Normal file
8
userland/print_argv.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
size_t i;
|
||||
for (i = 0; i < (size_t)argc; ++i)
|
||||
printf("%s\n", argv[i]);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user