#include <inttypes.h>

uint16_t uint16_zero_mask(uint16_t x)
{
  if (x == 0) return -1;
  return 0;
}