On Fri, Feb 21, 2014 at 1:50 PM, Philipp Klaus Krause <pkk at spth.de> wrote: > Using uint8_t as a bitfield type is non-portable. AFAIK, only int > singed int, unsigned int and bool are mandatory bit-field types in the > C standard. Why not just use > > bool saturate:1; > > and so on? That sounds good. Will do.