kit

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

attr_16_empty_attribute.c (278B)


      1 /* Empty attribute clauses are accepted for GCC compatibility:
      2  *   __attribute__(())   — no attrs
      3  *   __attribute__((,))  — empty entries separated by commas */
      4 __attribute__(()) int a;
      5 __attribute__((, )) int b;
      6 
      7 int test_main(void) {
      8   a = 0;
      9   b = 0;
     10   return a + b;
     11 }