Remove wr program

This commit is contained in:
Mark 2020-07-06 21:57:35 +03:00
parent 0529af7eb1
commit eeae3fb19d
2 changed files with 0 additions and 15 deletions

View File

@ -20,7 +20,6 @@ BINS=$(O)/bin/ls \
$(O)/bin/rm \
$(O)/bin/table \
$(O)/bin/uname \
$(O)/bin/wr \
$(O)/bin/mkfifo \
$(O)/bin/sleep \
$(O)/sbin/lspci \

View File

@ -1,14 +0,0 @@
#include <stdio.h>
int main(int argc, char **argv) {
FILE *fp = fopen(argv[1], "w");
if (!fp) {
perror(argv[1]);
return -1;
}
fwrite("123\n", 1, 4, fp);
fclose(fp);
return 0;
}