On Tue, 12 Aug 2003 23:50:06 +0900, Yoshinori Sato said: > - while (count) { > + while (count > 1) { Given that count is a size_t, which seems to be derived from 'unsigned int' or 'unsigned long' on every platform, how are these any different?