Can I use __attribute__((section("name")))
on a function implementation like this:
int __attribute__((section("name"))) Foo( void ){ return 1;}
This works on arm compiler, see this link http://www.keil.com/support/man/docs/armcc/armcc_chr1359124977848.htm
Would GCC ignore the section attribute when it is used only on the function implementation and not the prototype?