1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* See LICENSE file for copyright and license details. */ #include "common.h" USAGE("") int main(int argc, char *argv[]) { pid_t pid; UNOFLAGS(argc); bff_begin(); pid = bff_run((const char *[]){ "blind-flop", NULL }, STDIN_FILENO, STDOUT_FILENO); bff_wait(pid, "blind-flop"); bff_end(); return 0; }