kit

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

attr_section_no_string.c (199B)


      1 /* section() expects a string-literal argument (AS_STRING); passing an
      2  * integer must be rejected. */
      3 __attribute__((section(42))) int foo(void) { return 0; }
      4 
      5 int test_main(void) { return foo(); }