The output should be:
bar "bar" 0
This is the output that I get:
bar "bar 0
Then try changing the conditional in pipec.c
It is needed for MSYS as well. So we should have this:
#if defined (__CYGWIN__) || defined (__MSYS__)
#define fix_argv(argvec) (argvec)
#else
Exactly, like this. Do you get the correct output then?
Frank