#include <inttypes.h>

int8_t int8_equal_mask(int8_t x,int8_t y)
{
  if (x == y) return -1;
  return 0;
}