On Mon, 30 Aug 1999, Alan Cox wrote:

> > I have NO idea what the code was even supposed to do, but
> > if it is supposed to do what I quessed it could do, then
> > isn't this better:
> > 
> > unsigned long peekd(unsigned short *x)
> > {
> >   return peekw(x)|(peekw(x[1])<<16);
> > }
>
> Yep.

Not quite:

peekw(x)|(peekw(x+1)<<16);

unless perl has rotted my brain again.

Matthew.

Reply via email to