> I have used cygwin to build the GCC ARM tools and libraries. I am using the
> cygwin1.dll for running my application on windows.
>
> fp = fopen("c:\\hi.yuv", "wb");
There's your problem. Use POSIX names if you want POSIX
behavior. Try fopen("/cygdrive/c/hi.yuv") instead.
--
E
Hi,
I have used cygwin to build the GCC ARM tools and libraries. I am using the
cygwin1.dll for running my application on windows.
But file write in my application program has problem. The code is
{
FILE *fp;
fp = fopen("c:\\hi.yuv", "wb");
fwr
2 matches
Mail list logo