#include <inttypes.h>

int32_t int32_negative_01(int32_t x)
{
  if (x < 0) return 1;
  return 0;
}