Files
raspberrypi/bssdata/fun.c
root 467e3eb389 adding bssdata example to explain what I mean about not using .data or zeroing .bss
and what happens to you if you assume something when using my code as a baseline.
2012-09-05 02:43:48 -04:00

19 lines
224 B
C

unsigned int fun2 ( unsigned int );
const unsigned int x=2;
unsigned int y;
unsigned int z=7;
void fun ( unsigned int a )
{
unsigned int n;
n=5;
fun2(a);
fun2(x);
fun2(y);
fun2(z);
fun2(n);
}