kit

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

ldbl128_02_literal_to_int.c (138B)


      1 int test_main(void) {
      2   if (__LDBL_MANT_DIG__ != 113) return 0;
      3   long double a = 42.0L;
      4   long double b = 5.0L;
      5   return (int)(a + b);
      6 }