> It's just a bug left over from when convlit and convlit1
> did return things. Gcc apparently lets you do this.
Worked a treat. Thank you.
++L
On Fri, Nov 20, 2009 at 10:07 AM, wrote:
> From the Go compiler sources (cmd/gc/const.c:51...):
>
> /*
> * convert n, if literal, to type t.
> * implicit conversion.
> */
> void
> convlit(Node **np, Type *t)
> {
> return convlit1(
>From the Go compiler sources (cmd/gc/const.c:51...):
/*
* convert n, if literal, to type t.
* implicit conversion.
*/
void
convlit(Node **np, Type *t)
{
return convlit1(np, t, 0);
}
/*
On Fri Nov 20 05:26:26 EST 2009, mauricio.antu...@gmail.com wrote:
> Hi, all,
>
> I found 'werc' in a wikipedia link, and used it
> as a source for examples of how to use rc. Are there
> other places where I can found rc scripts, as well
> as other scripts for plan9 tools?
here are the scripts fr
Hi, all,
I found 'werc' in a wikipedia link, and used it
as a source for examples of how to use rc. Are there
other places where I can found rc scripts, as well
as other scripts for plan9 tools?
(By the way, do you know how can I attribute a
here document to a variable?)
Thanks,
Maurício
Thank you all :)
Ruda