SUBTRACT          201 maint/gnulib/tests/test-intprops.c   CHECK_SBINOP (-, SUBTRACT, INT_MAX, 1, int, false, INT_MAX - 1);
SUBTRACT          202 maint/gnulib/tests/test-intprops.c   CHECK_SBINOP (-, SUBTRACT, INT_MAX, -1, int, true, INT_MIN);
SUBTRACT          203 maint/gnulib/tests/test-intprops.c   CHECK_SBINOP (-, SUBTRACT, INT_MIN, 1, int, true, INT_MAX);
SUBTRACT          204 maint/gnulib/tests/test-intprops.c   CHECK_SBINOP (-, SUBTRACT, INT_MIN, -1, int, false, INT_MIN - -1);
SUBTRACT          205 maint/gnulib/tests/test-intprops.c   CHECK_BINOP (-, SUBTRACT, UINT_MAX, 1u, unsigned int, false, UINT_MAX - 1u);
SUBTRACT          206 maint/gnulib/tests/test-intprops.c   CHECK_BINOP (-, SUBTRACT, 0u, 1u, unsigned int, true, 0u - 1u);