#include <inttypes.h>

int8_t int8_negative_01(int8_t x)
{
  if (x < 0) return 1;
  return 0;
}