Home | History | Annotate | Download | only in const_variables
      1 #include <stdio.h>
      2 
      3 void foo()
      4 {
      5   printf("foo()\n");
      6 }
      7 
      8 int bar()
      9 {
     10   int ret = 3;
     11   printf("bar()->%d\n", ret);
     12   return ret;
     13 }
     14 
     15 void baaz(int i)
     16 {
     17   printf("baaz(%d)\n", i);
     18 }
     19