Re: "fopen" call...

2005-12-15 Thread Vasilkov Vasily
Thanks a lot... it works... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: "fopen" call...

2005-12-15 Thread Nicolas Blais
On December 15, 2005 04:41 pm, Vasilkov Vasily wrote: > Hi all.. > this is the part of my source > > FILE *source; > source = fopen("/home/user/test.c", "r"); > if (source) { > printf("fopen error"); > exit(0); > }; > > file "/home/user/te

Re: "fopen" call...

2005-12-15 Thread Michael C. Shultz
On Thursday 15 December 2005 13:41, Vasilkov Vasily wrote: > Hi all.. > this is the part of my source > > FILE *source; > source = fopen("/home/user/test.c", "r"); > if (source) { > printf("fopen error"); > exit(0); > }; > > file "/home/us

"fopen" call...

2005-12-15 Thread Vasilkov Vasily
Hi all.. this is the part of my source FILE *source; source = fopen("/home/user/test.c", "r"); if (source) { printf("fopen error"); exit(0); }; file "/home/user/test.c" exists and its access mode is 777..., but when I run program, I get "fopen e