kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

ldbl128_10_unary_neg.c (140B)


      1 int test_main(void) {
      2   if (__LDBL_MANT_DIG__ != 113) return 0;
      3   long double x = 19.0L;
      4   long double y = -x;
      5   return (int)(y + 50.0L);
      6 }