In article <8308 at scolex.sco.COM> seanf (Sean Fagan) writes:
>#define while(cond) for(;cond;)
>
>(I'm sitting here trying to think of any case where this will break
>[no pun intended 8-)] something; I can't think of any, offhand.)
do {
WHATEVER();
} while(COND);
Pax, Keith