On Tue, 27 Mar 2001, Gersh wrote:
> > it could be replaced with:
> > 
> > if (count % 10)
> >     printf("%d ", count);
> > 
> that acutally gives alot more output,  The basic idea was
> to only print out when it got to certian increments 10, 20
> Mainly becasue of the problem with serial connections :/

How about

if (!(count % 10))
    printf("%d ", count);

So it'd only print every 10..

(Which I think is what was originally intended)

-- 
David Taylor
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to