kit

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

6_6_08_func_addr_static_init.c (129B)


      1 static int helper(int x) { return x; }
      2 typedef int (*FN)(int);
      3 static const FN g = helper;
      4 int test_main(void) { return g(42); }