userland: build id

user mode: factor out nicely with -static and build id
This commit is contained in:
Ciro Santilli 六四事件 法轮功
2018-10-30 23:00:01 +00:00
parent 873737bd1f
commit ab2574a790
4 changed files with 94 additions and 109 deletions

8
userland/print_argv.c Normal file
View 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;
}