[Chicken-users] posix file-opening problem

2009-05-24 Thread Matt Gushee
Hi, all-- I am having trouble opening files in append mode using posix functions [Chicken 4.0 on Linux]: csi (define fd1 (file-open /tmp/foo1.txt (+ open/wronly open/creat))) csi (define po1 (open-output-file* fd1)) csi (display Hello 1\n po1) csi (close-output-port po1) csi (define fd2

Re: [Chicken-users] posix file-opening problem

2009-05-24 Thread Jim Ursetto
On Sun, May 24, 2009 at 2:02 PM, Matt Gushee m...@gushee.net wrote: Hi, all-- I am having trouble opening files in append mode using posix functions [Chicken 4.0 on Linux]: csi (define fd2 (file-open /tmp/foo2.txt (+ open/append open/creat))) csi (define po2 (open-output-file* fd2))