#include <inttypes.h>

uint8_t uint8_zero_mask(uint8_t x)
{
  if (x == 0) return -1;
  return 0;
}