1 /* 2 Compile this with: 3 4 gcc -g -c -Wall test28-add-aliased-function-v1.c 5 */ 6 7 void foo()8 foo() 9 { 10 } 11 12 void bar()13 bar() 14 { 15 } 16 17 void 18 baz() __attribute__ ((alias("bar"))); 19