show/hide this revision's text 2 added 84 characters in body

size_t should be unsigned.

its typically defined as unsigned long.

I've never seen it be defined otherwise. ssize_t is its signed counterpart.

EDIT: GCC defines it as signed in some circumstances. compiling in ASNI C mode or std-99 should force it to be unsigned.

show/hide this revision's text 1

size_t should be unsigned.

its typically defined as unsigned long.