search for: e3f38ed

Displaying 1 result from an estimated 1 matches for "e3f38ed".

Did you mean: 13b38ed
2011 Jun 11
0
[PATCH] utils add minimal mv
...:= ln.o static/ls-y := ls.o shared/ls-y := ls.o +static/mv-y := mv.o +shared/mv-y := mv.o static/nuke-y := nuke.o shared/nuke-y := nuke.o static/minips-y := minips.o diff --git a/usr/utils/mv.c b/usr/utils/mv.c new file mode 100644 index 0000000..e3f38ed --- /dev/null +++ b/usr/utils/mv.c @@ -0,0 +1,69 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> + +#include <linux/limits.h> + +int main(int argc, char *argv[]) +{ + int c...