Re: [9fans] Can't find CD-ROM

2008-02-12 Thread Lee Duhem
Take a look at Qemu Manager: http://www.davereyn.co.uk/about.htm 2008/2/12, Chris Saunders <[EMAIL PROTECTED]>: > Thanks, I have downloaded but not yet installed QEMU. I will try this soon. > > Regards > Chris Saunders > > "Eris Discordia" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTEC

Re: [9fans] gnugo port for plan9

2007-10-16 Thread Lee Duhem
very nice. lee 2007/10/17, andrey mirtchovski <[EMAIL PROTECTED]>: > available on sources and here: http://mirtchovski.com/p9/GnuGo/ > > see README.PLAN9 for installation instructions. > > sample game: > > 9grid% gnugo --boardsize 5 > GNU Go 3.6 > Copyright 1999, 2000, 2001, 2002, 2003 and 2004 b

[9fans] Bug of macro .L?

2007-03-28 Thread Lee Duhem
Macro .L of man generate some strange output, like this: .I Brdline returns a pointer to the start of the line or .L 0 on end-of-file or read error. These sentences in bio(2) will generate: Brdline returns a pointer to the start of the line or '0' '0 ' on end-of-file or read error. Is it a bug

Re: [9fans] working with the wiki

2007-03-26 Thread Lee Duhem
On Tue, Mar 27, 2007 at 01:21:39AM +0200, [EMAIL PROTECTED] wrote: > I think I fundamentally misunderstand how the wiki works, > working with > "http://plan9.bell-labs.com/wiki/plan9/Acme_wiki_instructions/index.html"; > I'm finding the system less intuitive then author intended :-( > > Basically

Re: [9fans] 8c's feature or bug?

2007-02-09 Thread Lee Duhem
On Thu, Feb 08, 2007 at 06:48:48PM +, Charles Forsyth wrote: > > I give prototypes of foo and foo1 before use and define them, maybe 8c > > just ignore these prototypes when it see the definitions. > > the prototypes are fine, but that one doesn't agree with the actual definition > because the

Re: [9fans] 8c's feature or bug?

2007-02-08 Thread Lee Duhem
On Thu, Feb 08, 2007 at 05:33:32PM +, Charles Forsyth wrote: > you're mixing ANSI prototypes and the original style, and > in > void f(b) > char b; > > i suspect b is promoted to int, because before prototypes C compilers > didn't know an argument was a char at point of call, and c

[9fans] 8c's feature or bug?

2007-02-08 Thread Lee Duhem
Hi all, Is this a feature or bug of 8c? Look at this: term% cat t.c #include #include #define ARGS(list) list void foo ARGS((char)); void foo1 ARGS((int)); void main(void) { foo('s'); foo1(1); exits(nil); } void foo (b) char b; { } void foo1 (b) int b; { } term% 8c -FVw t.c t.

Re: [9fans] Newbie question

2006-12-05 Thread Lee Duhem
yes, you can, if you want :-) but Plan9's GUI is very nice. try it first, and then decide 2006/12/5, Markus Sonderegger <[EMAIL PROTECTED]>: Hello! I am a C programmer and I've been using UNIX-like operating systems for some time now, but I'd really like to get into Plan 9. But before I insta